wininet: Make a test pass on IE6.

This commit is contained in:
Hans Leidekker 2008-06-23 20:59:08 +02:00 committed by Alexandre Julliard
parent e43cda6b54
commit 95d572dd7e
1 changed files with 1 additions and 1 deletions

View File

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