user32/tests: Allow newer Win10 behaviour.

Signed-off-by: André Hentschel <nerv@dawncrow.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
André Hentschel 2018-09-18 20:19:10 +02:00 committed by Alexandre Julliard
parent adede14dc2
commit bfad5527ac
1 changed files with 1 additions and 1 deletions

View File

@ -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)