remove remaining reference to enum name

This commit is contained in:
Brice Gros 2019-10-18 17:33:14 +02:00
parent 22c3ae8d30
commit 92db8ba9cd

View File

@ -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))