[pango/word-break-hyphens: 1/2] tests: Avoid extraneous markup in output




commit 62ede003a14b03311885ee873725b8caa5f9ce53
Author: Matthias Clasen <mclasen redhat com>
Date:   Sat May 8 20:23:12 2021 -0400

    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.

 tests/test-layout.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
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;
     }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]