diff options
author | Aaron Terrell (Enus) <enus@lindenlab.com> | 2010-08-24 23:41:47 -0700 |
---|---|---|
committer | Aaron Terrell (Enus) <enus@lindenlab.com> | 2010-08-24 23:41:47 -0700 |
commit | 48743cbd41ab56b42959c47de8f5451f85741fbb (patch) | |
tree | d1814af2247dcdca42d57b9786d65d4c368c51b2 /indra/llimage | |
parent | 27e74d25a1827ea875f18f057a13e8c3c086c944 (diff) |
standardizing test suite names as class name under test
Diffstat (limited to 'indra/llimage')
-rw-r--r-- | indra/llimage/tests/llimageworker_test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llimage/tests/llimageworker_test.cpp b/indra/llimage/tests/llimageworker_test.cpp index 98694aa7ee..a109276709 100644 --- a/indra/llimage/tests/llimageworker_test.cpp +++ b/indra/llimage/tests/llimageworker_test.cpp @@ -144,11 +144,11 @@ namespace tut // Tut templating thingamagic: test group, object and test instance typedef test_group<imagedecodethread_test> imagedecodethread_t; typedef imagedecodethread_t::object imagedecodethread_object_t; - tut::imagedecodethread_t tut_imagedecodethread("imagedecodethread"); + tut::imagedecodethread_t tut_imagedecodethread("LLImageDecodeThread"); typedef test_group<imagerequest_test> imagerequest_t; typedef imagerequest_t::object imagerequest_object_t; - tut::imagerequest_t tut_imagerequest("imagerequest"); + tut::imagerequest_t tut_imagerequest("LLImageRequest"); // --------------------------------------------------------------------------------------- // Test functions |