Francois Gouget : user32/tests: Add a trailing '\n' to a few ok() calls.

Alexandre Julliard julliard at winehq.org
Fri Jun 14 11:03:50 CDT 2013


Module: wine
Branch: master
Commit: bd97f64d04d68940039fcc9059792af1c9d4d532
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=bd97f64d04d68940039fcc9059792af1c9d4d532

Author: Francois Gouget <fgouget at free.fr>
Date:   Thu Jun 13 22:21:26 2013 +0200

user32/tests: Add a trailing '\n' to a few ok() calls.

---

 dlls/user32/tests/win.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/user32/tests/win.c b/dlls/user32/tests/win.c
index abd7f8d..515a57e 100644
--- a/dlls/user32/tests/win.c
+++ b/dlls/user32/tests/win.c
@@ -1524,13 +1524,13 @@ static void test_MDI_child_stack(HWND mdi_client)
     cs.lParam  = (LPARAM)mdi_lParam_test_message;
 
     child_1 = (HWND)SendMessageA(mdi_client, WM_MDICREATE, 0, (LPARAM)&cs);
-    ok(child_1 != 0, "expected child_1 to be non NULL");
+    ok(child_1 != 0, "expected child_1 to be non NULL\n");
     child_2 = (HWND)SendMessageA(mdi_client, WM_MDICREATE, 0, (LPARAM)&cs);
-    ok(child_2 != 0, "expected child_2 to be non NULL");
+    ok(child_2 != 0, "expected child_2 to be non NULL\n");
     child_3 = (HWND)SendMessageA(mdi_client, WM_MDICREATE, 0, (LPARAM)&cs);
-    ok(child_3 != 0, "expected child_3 to be non NULL");
+    ok(child_3 != 0, "expected child_3 to be non NULL\n");
     child_4 = (HWND)SendMessageA(mdi_client, WM_MDICREATE, 0, (LPARAM)&cs);
-    ok(child_4 != 0, "expected child_4 to be non NULL");
+    ok(child_4 != 0, "expected child_4 to be non NULL\n");
 
     stack[0] = (HWND)SendMessageA(mdi_client, WM_MDIGETACTIVE, 0, 0);
     stack[1] = GetWindow(stack[0], GW_HWNDNEXT);




More information about the wine-cvs mailing list