Fix a compiler warning

refs #8164
This commit is contained in:
Gunnar Beutner 2015-01-07 15:00:20 +01:00
parent 25d639d702
commit 54389cf324
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ BOOST_AUTO_TEST_CASE(simple)
delete expr;
expr = ConfigCompiler::CompileText("<test>", "\"\\'test\"");
BOOST_CHECK_THROW(expr->Evaluate(frame) == "\"test", ScriptError);
BOOST_CHECK_THROW(expr->Evaluate(frame), ScriptError);
delete expr;
}