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

Francois Gouget fgouget at free.fr
Fri Sep 9 05:49:44 CDT 2011


---
 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);
-- 
1.7.5.4




More information about the wine-patches mailing list