wininet: Make another test pass on IE6.

This commit is contained in:
Hans Leidekker 2008-07-19 19:53:09 +02:00 committed by Alexandre Julliard
parent e3e2622e41
commit a5c6455193
1 changed files with 2 additions and 2 deletions

View File

@ -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);