* tests/conform/test-pick.c (test_pick): The final result message

when --verbose is used was the wrong way around
This commit is contained in:
Neil Roberts 2008-11-18 12:36:27 +00:00
parent 56fa77a5db
commit 33a67bc299
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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

View 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);
}