Commit bfad5527 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

user32/tests: Allow newer Win10 behaviour.

parent adede14d
......@@ -585,7 +585,7 @@ static void test_display_config(void)
paths = modes = 100;
ret = pGetDisplayConfigBufferSizes(0, &paths, &modes);
ok(ret == ERROR_INVALID_PARAMETER || ret == ERROR_NOT_SUPPORTED, "got %d\n", ret);
ok(modes == 0 && paths == 0, "got %u, %u\n", modes, paths);
ok((modes == 0 || modes == 100) && paths == 0, "got %u, %u\n", modes, paths);
}
START_TEST(monitor)
......
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