Module: wine Branch: master Commit: 902a03e08f4ae01efea5b242d028e68419d0409b URL: http://source.winehq.org/git/wine.git/?a=commit;h=902a03e08f4ae01efea5b242d0...
Author: Gerald Pfeifer gerald@pfeifer.com Date: Sat Sep 12 15:40:25 2009 +0200
imm32/tests: Simplify code.
---
dlls/imm32/tests/imm32.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/imm32/tests/imm32.c b/dlls/imm32/tests/imm32.c index edda55b..db1cd8d 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();