summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-05-08 20:23:12 -0400
committerMatthias Clasen <mclasen@redhat.com>2021-05-08 20:24:49 -0400
commit62ede003a14b03311885ee873725b8caa5f9ce53 (patch)
tree0f4c8388d741d3788883308cf88a2eb1c16ae875
parentb67e80ec6cdc41126c122f913341b5c99a614c13 (diff)
downloadpango-62ede003a14b03311885ee873725b8caa5f9ce53.tar.gz
tests: Avoid extraneous markup in output
When using test-layout FILE to generate expected output, we don't want to prepend an extraneous '#' to every line.
-rw-r--r--tests/test-layout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-layout.c b/tests/test-layout.c
index 2ed2a732..9c5d13a0 100644
--- a/tests/test-layout.c
+++ b/tests/test-layout.c
@@ -368,7 +368,7 @@ main (int argc, char *argv[])
string = g_string_sized_new (0);
test_file (argv[1], string);
- g_test_message ("%s", string->str);
+ g_print ("%s", string->str);
return 0;
}