diff --git a/CppUnit/include/CppUnit/TestCaller.h b/CppUnit/include/CppUnit/TestCaller.h index 5b8001dec..77009df2b 100644 --- a/CppUnit/include/CppUnit/TestCaller.h +++ b/CppUnit/include/CppUnit/TestCaller.h @@ -54,7 +54,7 @@ class TestCaller: public TestCase typedef void (Fixture::*TestMethod)(); public: - TestCaller(const std::string& name, TestMethod test, Test::Type testType = Test::Type::Normal): + TestCaller(const std::string& name, TestMethod test, Test::Type testType = Test::Normal): TestCase(name, testType), _test(test), _fixture(new Fixture(name))