summaryrefslogtreecommitdiff
path: root/src/cppunit/TestFactoryRegistry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cppunit/TestFactoryRegistry.cpp')
-rw-r--r--src/cppunit/TestFactoryRegistry.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cppunit/TestFactoryRegistry.cpp b/src/cppunit/TestFactoryRegistry.cpp
index 25d6de2..e20b901 100644
--- a/src/cppunit/TestFactoryRegistry.cpp
+++ b/src/cppunit/TestFactoryRegistry.cpp
@@ -83,7 +83,7 @@ TestFactoryRegistry::registerFactory( TestFactory *factory )
Test *
TestFactoryRegistry::makeTest()
{
- TestSuite *suite = new TestSuite( "All Tests" );
+ TestSuite *suite = new TestSuite( m_name );
addTestToSuite( suite );
return suite;
}