diff --git a/ChangeLog b/ChangeLog index 83334904e..a90840603 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-11-18 Neil Roberts + + * 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 * tests/conform/test-conform-main.c (main): Fixed a typo in the diff --git a/tests/conform/test-pick.c b/tests/conform/test-pick.c index 965bc24e6..3095729c1 100644 --- a/tests/conform/test-pick.c +++ b/tests/conform/test-pick.c @@ -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); }