about summary refs log tree commit diff stats
path: root/subx/003trace.test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'subx/003trace.test.cc')
-rw-r--r--subx/003trace.test.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/subx/003trace.test.cc b/subx/003trace.test.cc
index 85751a4a..addc1f44 100644
--- a/subx/003trace.test.cc
+++ b/subx/003trace.test.cc
@@ -42,7 +42,9 @@ void test_trace_orders_across_layers() {
   trace("test layer 1") << "foo" << end();
   trace("test layer 2") << "bar" << end();
   trace("test layer 1") << "qux" << end();
-  CHECK_TRACE_CONTENTS("test layer 1: footest layer 2: bartest layer 1: qux");
+  CHECK_TRACE_CONTENTS("test layer 1: foo\n"
+                       "test layer 2: bar\n"
+                       "test layer 1: qux\n");
 }
 
 void test_trace_supports_count() {