Francois Gouget : riched20/tests: Add a '\n' to an ok() call.
Module: wine Branch: master Commit: cc2cd5a525ba94656751e57b4a96988b813cc22c URL: http://source.winehq.org/git/wine.git/?a=commit;h=cc2cd5a525ba94656751e57b4a... Author: Francois Gouget <fgouget(a)free.fr> Date: Sat Mar 5 11:50:48 2011 +0100 riched20/tests: Add a '\n' to an ok() call. --- dlls/riched20/tests/editor.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/riched20/tests/editor.c b/dlls/riched20/tests/editor.c index 955a394..7a4e032 100644 --- a/dlls/riched20/tests/editor.c +++ b/dlls/riched20/tests/editor.c @@ -6028,7 +6028,7 @@ static void test_EM_CHARFROMPOS(void) hwnd = new_richedit(NULL); result = SendMessageA(hwnd, WM_SETTEXT, 0, (LPARAM)"one two three four five six seven\reight"); - ok(result == 1, "Expected 1, got %d", result); + ok(result == 1, "Expected 1, got %d\n", result); GetClientRect(hwnd, &rcClient); result = SendMessage(hwnd, EM_CHARFROMPOS, 0, (LPARAM)&point);
participants (1)
-
Alexandre Julliard