crypt32: Fix a failing test in Vista.
This commit is contained in:
parent
a4d375c9f0
commit
18c45d8be7
|
@ -103,7 +103,8 @@ static void testOIDToAlgID(void)
|
|||
ok(GetLastError() == 0xdeadbeef ||
|
||||
GetLastError() == ERROR_RESOURCE_NAME_NOT_FOUND ||
|
||||
GetLastError() == ERROR_INVALID_PARAMETER || /* Vista */
|
||||
GetLastError() == ERROR_SUCCESS, /* win2k */
|
||||
GetLastError() == ERROR_SUCCESS || /* win2k */
|
||||
GetLastError() == ERROR_FILE_INVALID, /* another Vista */
|
||||
"Expected ERROR_RESOURCE_NAME_NOT_FOUND, ERROR_INVALID_PARAMETER, "
|
||||
"ERROR_SUCCESS or no error set, got %08x\n", GetLastError());
|
||||
|
||||
|
|
Loading…
Reference in New Issue