crypt32: Fix a failing test in Vista.

This commit is contained in:
James Hawkins 2008-09-10 23:00:53 -05:00 committed by Alexandre Julliard
parent a4d375c9f0
commit 18c45d8be7
1 changed files with 2 additions and 1 deletions

View File

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