summaryrefslogtreecommitdiff
path: root/src/cppunit/TestCaseDecorator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cppunit/TestCaseDecorator.cpp')
-rw-r--r--src/cppunit/TestCaseDecorator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cppunit/TestCaseDecorator.cpp b/src/cppunit/TestCaseDecorator.cpp
index 4fb8f80..a7229f4 100644
--- a/src/cppunit/TestCaseDecorator.cpp
+++ b/src/cppunit/TestCaseDecorator.cpp
@@ -4,8 +4,8 @@ CPPUNIT_NS_BEGIN
TestCaseDecorator::TestCaseDecorator( TestCase *test )
- : m_test( test )
- , TestCase( test->getName() )
+ : TestCase( test->getName() ),
+ m_test( test )
{
}