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

This commit is contained in:
Francois Gouget 2008-09-01 17:02:19 +02:00 committed by Alexandre Julliard
parent ffcb02696c
commit 189ea26989
1 changed files with 1 additions and 1 deletions

View File

@ -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]);