comctl32/tests: Don't outdent todo_wine*.

This prevents -Wmisleading-indentation warnings (Mingw GCC11).

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2022-02-21 08:07:21 +01:00 committed by Alexandre Julliard
parent 4481d0359c
commit 06d399fcb0
2 changed files with 4 additions and 4 deletions

View file

@ -165,7 +165,7 @@ static void test_image(HBITMAP image, BOOL is_dib, BOOL is_premult, BOOL is_alph
ok(bm.bmBits != NULL, "bmBits is NULL\n");
memcpy(bits, bm.bmBits, 4);
if (is_premult)
todo_wine
todo_wine
ok(bits[0] == 0x05 && bits[1] == 0x09 && bits[2] == 0x0e && bits[3] == 0x44,
"bits: %02x %02x %02x %02x\n", bits[0], bits[1], bits[2], bits[3]);
else if (is_alpha)
@ -195,7 +195,7 @@ todo_wine
DeleteDC(hdc);
if (is_premult)
todo_wine
todo_wine
ok(bits[0] == 0x05 && bits[1] == 0x09 && bits[2] == 0x0e && bits[3] == 0x44,
"bits: %02x %02x %02x %02x\n", bits[0], bits[1], bits[2], bits[3]);
else if (is_alpha)

View file

@ -2728,7 +2728,7 @@ static void test_BTNS_SEP(void)
memset(&button, 0, sizeof(button));
ret = SendMessageA(hwnd, TB_GETBUTTON, 0, (LPARAM)&button);
ok(ret == 1, "Unexpected return value.\n");
todo_wine
todo_wine
ok(button.iBitmap == 8, "Unexpected iBitmap value %d.\n", button.iBitmap);
rebuild_toolbar(&hwnd);
@ -2789,7 +2789,7 @@ todo_wine
memset(&button, 0, sizeof(button));
ret = SendMessageA(hwnd, TB_GETBUTTON, 0, (LPARAM)&button);
ok(ret == 1, "Unexpected return value.\n");
todo_wine
todo_wine
ok(button.iBitmap == 8, "Unexpected iBitmap value %d.\n", button.iBitmap);
DestroyWindow(hwnd);