summaryrefslogtreecommitdiffstats
path: root/test/src/test-w3c.cpp
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-10-27 09:57:17 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-10-27 09:57:17 (GMT)
commit1e42b29439d247598d58aac10f62c77cf2f31f12 (patch)
tree3499cf96d0eba3fcfb7974c3151cd29f63d32bfb /test/src/test-w3c.cpp
parent45ba8b93098f4f64a2dbc1e0a4c15c5ddb1d6559 (diff)
downloaduscxml-1e42b29439d247598d58aac10f62c77cf2f31f12.zip
uscxml-1e42b29439d247598d58aac10f62c77cf2f31f12.tar.gz
uscxml-1e42b29439d247598d58aac10f62c77cf2f31f12.tar.bz2
Fixed w3c-test after iequals refactoring
Diffstat (limited to 'test/src/test-w3c.cpp')
-rw-r--r--test/src/test-w3c.cpp2
1 files changed, 1 insertions, 1 deletions
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<std::string> 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);
}