Francois Gouget : comctl32/tests: Add a '\n' to a pair of ok() calls.

Alexandre Julliard julliard at winehq.org
Mon Mar 7 12:22:43 CST 2011


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Sat Mar  5 11:50:23 2011 +0100

comctl32/tests: Add a '\n' to a pair of ok() calls.

---

 dlls/comctl32/tests/comboex.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/comctl32/tests/comboex.c b/dlls/comctl32/tests/comboex.c
index ca30482..59c261c 100644
--- a/dlls/comctl32/tests/comboex.c
+++ b/dlls/comctl32/tests/comboex.c
@@ -405,7 +405,7 @@ static void test_WM_WINDOWPOSCHANGING(void)
     wp.hwndInsertAfter = NULL;
 
     ret = SendMessageA(hCombo, WM_WINDOWPOSCHANGING, 0, (LPARAM)&wp);
-    ok(ret == 0, "expected 0, got %x", ret);
+    ok(ret == 0, "expected 0, got %x\n", ret);
     ok(wp.cy == combo_height,
             "Expected height %d, got %d\n", combo_height, wp.cy);
 
@@ -419,7 +419,7 @@ static void test_WM_WINDOWPOSCHANGING(void)
     wp.hwndInsertAfter = NULL;
 
     ret = SendMessageA(hCombo, WM_WINDOWPOSCHANGING, 0, (LPARAM)&wp);
-    ok(ret == 0, "expected 0, got %x", ret);
+    ok(ret == 0, "expected 0, got %x\n", ret);
     ok(wp.cy == combo_height,
             "Expected height %d, got %d\n", combo_height, wp.cy);
 




More information about the wine-cvs mailing list