* tests/conform/test-pick.c (test_pick): The final result message
authorNeil Roberts <neil@openedhand.com>
Tue, 18 Nov 2008 12:36:27 +0000 (12:36 +0000)
committerNeil Roberts <neil@openedhand.com>
Tue, 18 Nov 2008 12:36:27 +0000 (12:36 +0000)
when --verbose is used was the wrong way around

ChangeLog
tests/conform/test-pick.c

index 8333490..a908406 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2008-11-18  Neil Roberts  <neil@linux.intel.com>
 
+       * tests/conform/test-pick.c (test_pick): The final result message
+       when --verbose is used was the wrong way around
+
+2008-11-18  Neil Roberts  <neil@linux.intel.com>
+
        * tests/conform/test-conform-main.c (main): Fixed a typo in the
        name of the path for test_realized.
 
index 965bc24..3095729 100644 (file)
@@ -102,7 +102,7 @@ test_pick (TestConformSimpleFixture *fixture,
 
 
   if (g_test_verbose ())
-    g_print ("end result: %s\n", state.pass ? "FAIL" : "pass");
+    g_print ("end result: %s\n", state.pass ? "pass" : "FAIL");
 
   g_assert (state.pass);
 }