Commit d9d8e6f0 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

winhttp/tests: Fix a test failure on win2k.

parent 1fb3f9cb
......@@ -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;
......
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