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

This commit is contained in:
Francois Gouget 2011-03-05 11:50:23 +01:00 committed by Alexandre Julliard
parent fdf97125cb
commit 755648421e
1 changed files with 2 additions and 2 deletions

View File

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