diff --git a/Code/Mantid/Kernel/test/ConfigSvcTest.h b/Code/Mantid/Kernel/test/ConfigSvcTest.h index 0816a97927ce916f2c90b8bbeeb56d79947d34cb..d73ae1642fd898a62619fd359c6cd5bd63aed85e 100644 --- a/Code/Mantid/Kernel/test/ConfigSvcTest.h +++ b/Code/Mantid/Kernel/test/ConfigSvcTest.h @@ -32,13 +32,13 @@ public: TS_ASSERT_THROWS_NOTHING(log1.fatal("a fatal string")); //checking the level - this should be set to debug in the config file - //therefore this should only return false for trace - TS_ASSERT(log1.is(Logger::Priority::PRIO_DEBUG) == false); //debug - TS_ASSERT(log1.is(Logger::Priority::PRIO_INFORMATION)); //information - TS_ASSERT(log1.is(Logger::Priority::PRIO_WARNING)); //warning - TS_ASSERT(log1.is(Logger::Priority::PRIO_ERROR)); //error - TS_ASSERT(log1.is(Logger::Priority::PRIO_CRITICAL)); //critical - TS_ASSERT(log1.is(Logger::Priority::PRIO_FATAL)); //fatal + //therefore this should only return false for debug + TS_ASSERT(log1.is(Logger::PRIO_DEBUG) == false); //debug + TS_ASSERT(log1.is(Logger::PRIO_INFORMATION)); //information + TS_ASSERT(log1.is(Logger::PRIO_WARNING)); //warning + TS_ASSERT(log1.is(Logger::PRIO_ERROR)); //error + TS_ASSERT(log1.is(Logger::PRIO_CRITICAL)); //critical + TS_ASSERT(log1.is(Logger::PRIO_FATAL)); //fatal }