comctl32: Fix a failing test in win95.

This commit is contained in:
James Hawkins 2008-09-24 03:03:28 -05:00 committed by Alexandre Julliard
parent 0f38a6c881
commit 921f67a607
1 changed files with 3 additions and 1 deletions

View File

@ -376,7 +376,9 @@ static void test_status_control(void)
/* Make simple */
SendMessage(hWndStatus, SB_SIMPLE, TRUE, 0);
r = SendMessage(hWndStatus, SB_ISSIMPLE, 0, 0);
expect(TRUE,r);
ok(r == TRUE ||
broken(r == FALSE), /* win95 */
"Expected TRUE, got %d\n", r);
DestroyWindow(hWndStatus);
}