Francois Gouget : user32/tests: Add a trailing '\n' to an ok() call.

Alexandre Julliard julliard at winehq.org
Tue Sep 2 08:33:22 CDT 2008


Module: wine
Branch: master
Commit: 189ea269892f685494c97b110c0c6b56f1415af7
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=189ea269892f685494c97b110c0c6b56f1415af7

Author: Francois Gouget <fgouget at free.fr>
Date:   Mon Sep  1 17:02:19 2008 +0200

user32/tests: Add a trailing '\n' to an ok() call.

---

 dlls/user32/tests/input.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/user32/tests/input.c b/dlls/user32/tests/input.c
index 8d60d21..2a26447 100644
--- a/dlls/user32/tests/input.c
+++ b/dlls/user32/tests/input.c
@@ -1194,7 +1194,7 @@ static void test_ToUnicode(void)
     todo_wine ok(ret == 0, "ToUnicode for CTRL + Tab didn't return 0 (was %i)\n", ret);
 
     ret = ToUnicode(VK_RETURN, SC_RETURN, state, wStr, 2, 0);
-    ok(ret == 1, "ToUnicode for CTRL + Return didn't return 1 (was %i)", ret);
+    ok(ret == 1, "ToUnicode for CTRL + Return didn't return 1 (was %i)\n", ret);
     if(ret == 1)
         ok(wStr[0]=='\n', "ToUnicode for CTRL + Return was %i (expected 10)\n", wStr[0]);
 




More information about the wine-cvs mailing list