Commit 75564842 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent fdf97125
...@@ -405,7 +405,7 @@ static void test_WM_WINDOWPOSCHANGING(void) ...@@ -405,7 +405,7 @@ static void test_WM_WINDOWPOSCHANGING(void)
wp.hwndInsertAfter = NULL; wp.hwndInsertAfter = NULL;
ret = SendMessageA(hCombo, WM_WINDOWPOSCHANGING, 0, (LPARAM)&wp); 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, ok(wp.cy == combo_height,
"Expected height %d, got %d\n", combo_height, wp.cy); "Expected height %d, got %d\n", combo_height, wp.cy);
...@@ -419,7 +419,7 @@ static void test_WM_WINDOWPOSCHANGING(void) ...@@ -419,7 +419,7 @@ static void test_WM_WINDOWPOSCHANGING(void)
wp.hwndInsertAfter = NULL; wp.hwndInsertAfter = NULL;
ret = SendMessageA(hCombo, WM_WINDOWPOSCHANGING, 0, (LPARAM)&wp); 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, ok(wp.cy == combo_height,
"Expected height %d, got %d\n", combo_height, wp.cy); "Expected height %d, got %d\n", combo_height, wp.cy);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment