diff --git a/dlls/crypt32/tests/oid.c b/dlls/crypt32/tests/oid.c index a583fc718fc..11451310812 100644 --- a/dlls/crypt32/tests/oid.c +++ b/dlls/crypt32/tests/oid.c @@ -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());