From 1e42b29439d247598d58aac10f62c77cf2f31f12 Mon Sep 17 00:00:00 2001 From: Stefan Radomski Date: Sun, 27 Oct 2013 10:57:17 +0100 Subject: Fixed w3c-test after iequals refactoring --- test/src/test-w3c.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/test-w3c.cpp b/test/src/test-w3c.cpp index 0486ca3..f99e969 100644 --- a/test/src/test-w3c.cpp +++ b/test/src/test-w3c.cpp @@ -100,7 +100,7 @@ void printUsageAndExit() { class W3CStatusMonitor : public uscxml::InterpreterMonitor { void beforeCompletion(uscxml::Interpreter interpreter) { Arabica::XPath::NodeSet config = interpreter.getConfiguration(); - if (config.size() == 1 && iequals(ATTR(config[0], "id"), "pass")) { + if (config.size() == 1 && boost::iequals(ATTR(config[0], "id"), "pass")) { std::cout << "TEST SUCCEEDED" << std::endl; exit(EXIT_SUCCESS); } -- cgit v0.12