Francois Gouget : user32/tests: Add a trailing '\n' to an ok() call.
Module: wine Branch: master Commit: 03d4ef95ece26873e1ee07d83c243b48d214e2ec URL: http://source.winehq.org/git/wine.git/?a=commit;h=03d4ef95ece26873e1ee07d83c... Author: Francois Gouget <fgouget(a)free.fr> Date: Fri Sep 9 12:49:44 2011 +0200 user32/tests: Add a trailing '\n' to an ok() call. --- dlls/user32/tests/edit.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/user32/tests/edit.c b/dlls/user32/tests/edit.c index 934fc52..c1ca3a3 100644 --- a/dlls/user32/tests/edit.c +++ b/dlls/user32/tests/edit.c @@ -773,7 +773,7 @@ static void test_edit_control_2(void) r = SetCaretPos(0, 0); todo_wine ok(0 == r, "SetCaretPos succeeded unexpectedly, expected: 0, got: %d\n", r); phwnd = SetFocus(hwndET2); - ok(phwnd != NULL, "SetFocus failed unexpectedly, expected non-zero, got NULL"); + ok(phwnd != NULL, "SetFocus failed unexpectedly, expected non-zero, got NULL\n"); r = SetCaretPos(0, 0); ok(1 == r, "SetCaretPos failed unexpectedly, expected: 1, got: %d\n", r); r = GetCaretPos(&cpos);
participants (1)
-
Alexandre Julliard