diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-05-08 20:23:12 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-05-08 20:24:49 -0400 |
commit | 62ede003a14b03311885ee873725b8caa5f9ce53 (patch) | |
tree | 0f4c8388d741d3788883308cf88a2eb1c16ae875 /tests/test-layout.c | |
parent | b67e80ec6cdc41126c122f913341b5c99a614c13 (diff) | |
download | pango-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.
Diffstat (limited to 'tests/test-layout.c')
-rw-r--r-- | tests/test-layout.c | 2 |
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; } |