From 189ea269892f685494c97b110c0c6b56f1415af7 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Mon, 1 Sep 2008 17:02:19 +0200 Subject: [PATCH] user32/tests: Add a trailing '\n' to an ok() call. --- dlls/user32/tests/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/user32/tests/input.c b/dlls/user32/tests/input.c index 8d60d21255a..2a2644706b7 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]);