comctl32/tests: Add a '\n' to a pair of ok() calls.
This commit is contained in:
parent
fdf97125cb
commit
755648421e
|
@ -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)
|
||||||
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);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue