summaryrefslogtreecommitdiff
path: root/test/source
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-04-27 04:12:08 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-04-27 04:13:07 +0200
commit9e82b503fe794df56be48cce0bff3c6c08111358 (patch)
treeabdb2e19b2de506968338c49e422a250eda4b242 /test/source
parentfaea7e4962dcfe1b2a59407bc8ad03d6ded4c6d6 (diff)
use the correct macro
don't push at 3a.m. Change-Id: Ia50253fe136bab3ebef7a71ba5dbf87e752c2e1a
Diffstat (limited to 'test/source')
-rw-r--r--test/source/diff/diff.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/source/diff/diff.cxx b/test/source/diff/diff.cxx
index 4d130232b881..8587fd799eb0 100644
--- a/test/source/diff/diff.cxx
+++ b/test/source/diff/diff.cxx
@@ -128,7 +128,7 @@ bool XMLDiff::compare()
CPPUNIT_ASSERT(root2);
std::stringstream stringStream("Expected: ");
stringStream << (char*)root1->name << "\nFound: " << (char*) root2->name;
- CPPUNIT_ASSERT(stringStream.str(), xmlStrEqual(root1->name, root2->name));
+ CPPUNIT_ASSERT_MESSAGE(stringStream.str(), xmlStrEqual(root1->name, root2->name));
#else
if (!root1 || !root2)
return false;