urlmon/tests: Fix a test failure on COOKIE_SENT status.

oldstable
Alexandre Julliard 2012-05-03 10:23:19 +02:00
parent 9ec1f7ba1b
commit 2ded2fe7ad
1 changed files with 2 additions and 1 deletions

View File

@ -1475,7 +1475,8 @@ static void test_WinInetHttpInfo(IWinInetHttpInfo *http_info, DWORD progress)
size = sizeof(DWORD);
hres = IWinInetHttpInfo_QueryInfo(http_info, HTTP_QUERY_STATUS_CODE|HTTP_QUERY_FLAG_NUMBER,
&status, &size, NULL, NULL);
ok(hres == expect, "hres = %x, expected %x\n", hres, expect);
ok(hres == expect || (progress == BINDSTATUS_COOKIE_SENT && hres == S_FALSE),
"hres = %x, expected %x\n", hres, expect);
if(hres == S_OK) {
if(download_state==BEFORE_DOWNLOAD && progress!=BINDSTATUS_MIMETYPEAVAILABLE)
ok(status == 0, "status = %d\n", status);