Commit 95d572dd authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

wininet: Make a test pass on IE6.

parent e43cda6b
......@@ -1677,7 +1677,7 @@ static void test_header_handling_order(int port)
size = sizeof(status);
ret = HttpQueryInfo( request, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER, &status, &size, NULL );
ok(ret, "HttpQueryInfo failed\n");
ok(status == 200, "request failed with status %u\n", status);
ok(status == 200 || status == 400 /* IE6 */, "request failed with status %u\n", status);
InternetCloseHandle(request);
InternetCloseHandle(connect);
......
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