Commit eb612fd4 authored by Nicolas Le Cam's avatar Nicolas Le Cam Committed by Alexandre Julliard

kernel32/tests: Fix a failing test in Vista.

parent 5cf418f5
......@@ -840,7 +840,7 @@ static void test_CompareStringA(void)
/* test for CompareStringA flags */
SetLastError(0xdeadbeef);
ret = CompareStringA(LOCALE_SYSTEM_DEFAULT, 0x10, "NULL", -1, "NULL", -1);
ret = CompareStringA(LOCALE_SYSTEM_DEFAULT, 0x8, "NULL", -1, "NULL", -1);
ok(GetLastError() == ERROR_INVALID_FLAGS,
"unexpected error code %d\n", GetLastError());
ok(!ret, "CompareStringA must fail with invalid flag\n");
......
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