From 902a03e08f4ae01efea5b242d028e68419d0409b Mon Sep 17 00:00:00 2001 From: Gerald Pfeifer Date: Sat, 12 Sep 2009 15:40:25 +0200 Subject: [PATCH] imm32/tests: Simplify code. --- dlls/imm32/tests/imm32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/imm32/tests/imm32.c b/dlls/imm32/tests/imm32.c index edda55bf11f..db1cd8d36e3 100644 --- a/dlls/imm32/tests/imm32.c +++ b/dlls/imm32/tests/imm32.c @@ -212,7 +212,7 @@ static void test_ImmNotifyIME(void) { /* behavior differs between win9x and NT */ ret = ImmGetCompositionString(imc, GCS_COMPSTR, resstr, sizeof(resstr)); - ok(ret || !ret, "You'll never read this.\n"); + ok(!ret, "After being cancelled the composition string is empty.\n"); msg_spy_flush_msgs(); -- 2.11.4.GIT