Commit aad8bc2c authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

user32/tests: Fix a WM_DISPLAYCHANGE broken() condition.

parent 6d748ce3
......@@ -2502,7 +2502,7 @@ static void test_WM_DISPLAYCHANGE(void)
{
todo_wine
win_skip( "ChangeDisplaySettingsExW returned %ld\n", res );
ok( res == DISP_CHANGE_BADMODE || broken( DISP_CHANGE_FAILED && bpp == 8 ),
ok( res == DISP_CHANGE_BADMODE || broken( res == DISP_CHANGE_FAILED && bpp == 8 ),
"ChangeDisplaySettingsExW returned %ld\n", res );
ok( last_bpp == -1, "got WM_DISPLAYCHANGE bpp %d\n", last_bpp );
}
......
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