Commit 88bf73ab authored by Sebastian Lackner's avatar Sebastian Lackner Committed by Alexandre Julliard

comctl32/tests: Fix incorrect usage of broken() function.

parent f89c3d58
......@@ -289,7 +289,7 @@ static void test_status_control(void)
expect(5,LOWORD(r));
expect(SBT_POPOUT,HIWORD(r));
r = SendMessageW(hWndStatus, WM_GETTEXTLENGTH, 0, 0);
ok(r == 5 || broken(0x02000005 /* NT4 */), "Expected 5, got %d\n", r);
ok(r == 5, "Expected 5, got %d\n", r);
r = SendMessageA(hWndStatus, SB_GETTEXTLENGTHA, 1, 0);
expect(0,LOWORD(r));
expect(SBT_OWNERDRAW,HIWORD(r));
......
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