aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/testapp-debug/debugtest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vespalib/src/tests/testapp-debug/debugtest.cpp')
-rw-r--r--vespalib/src/tests/testapp-debug/debugtest.cpp32
1 files changed, 16 insertions, 16 deletions
diff --git a/vespalib/src/tests/testapp-debug/debugtest.cpp b/vespalib/src/tests/testapp-debug/debugtest.cpp
index 2ff7affc323..78bf3d69215 100644
--- a/vespalib/src/tests/testapp-debug/debugtest.cpp
+++ b/vespalib/src/tests/testapp-debug/debugtest.cpp
@@ -5,25 +5,25 @@ using namespace vespalib;
void testDebug() {
TEST_DEBUG("lhs.out", "rhs.out");
- EXPECT_EQUAL("a\n"
- "b\n"
- "c\n",
+ EXPECT_EQUAL(string("a\n"
+ "b\n"
+ "c\n"),
- "a\n"
- "b\n"
- "c\n"
- "d\n");
- EXPECT_EQUAL("a\n"
- "d\n"
- "b\n"
- "c\n",
+ string("a\n"
+ "b\n"
+ "c\n"
+ "d\n"));
+ EXPECT_EQUAL(string("a\n"
+ "d\n"
+ "b\n"
+ "c\n"),
- "a\n"
- "b\n"
- "c\n"
- "d\n");
+ string("a\n"
+ "b\n"
+ "c\n"
+ "d\n"));
EXPECT_EQUAL(1, 2);
- EXPECT_EQUAL("foo", "bar");
+ EXPECT_EQUAL(string("foo"), string("bar"));
}
TEST_MAIN() {