mirror of
https://github.com/reactos/wine.git
synced 2025-01-08 12:20:55 +00:00
winhttp/tests: Fix a test failure on win2k.
This commit is contained in:
parent
1fb3f9cb15
commit
d9d8e6f031
@ -942,6 +942,11 @@ static void test_request_parameter_defaults(void)
|
||||
ok(ret, "failed to send request %u\n", GetLastError());
|
||||
|
||||
ret = WinHttpReceiveResponse(req, NULL);
|
||||
if (!ret && GetLastError() == ERROR_WINHTTP_INVALID_SERVER_RESPONSE) /* win2k */
|
||||
{
|
||||
win_skip("invalid response\n");
|
||||
goto done;
|
||||
}
|
||||
ok(ret, "failed to receive response %u\n", GetLastError());
|
||||
|
||||
status = 0xdeadbeef;
|
||||
|
Loading…
Reference in New Issue
Block a user