wininet: Make another test pass on IE6.
This commit is contained in:
parent
e3e2622e41
commit
a5c6455193
|
@ -1688,7 +1688,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 */, "got status %u, expected 200 or 400\n", status);
|
||||
|
||||
InternetCloseHandle(request);
|
||||
|
||||
|
@ -1705,7 +1705,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 || status == 400 /* IE6 */, "request failed with status %u\n", status);
|
||||
ok(status == 200 || status == 400 /* IE6 */, "got status %u, expected 200 or 400\n", status);
|
||||
|
||||
InternetCloseHandle(request);
|
||||
InternetCloseHandle(connect);
|
||||
|
|
Loading…
Reference in New Issue