From 33a67bc299a92b2eef87e58cef95605077ebbe75 Mon Sep 17 00:00:00 2001 From: Neil Roberts Date: Tue, 18 Nov 2008 12:36:27 +0000 Subject: [PATCH] * tests/conform/test-pick.c (test_pick): The final result message when --verbose is used was the wrong way around --- ChangeLog | 5 +++++ tests/conform/test-pick.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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); }