wininet/tests: Make a check for available data less strict.
Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
30235c0d24
commit
3a22407396
|
@ -5551,7 +5551,7 @@ static void test_http_read(int port)
|
|||
|
||||
send_response_len_and_wait(20000, TRUE, &ib);
|
||||
avail = expect_data_available(req.request, -1);
|
||||
ok(avail < 17000, "avail = %u\n", avail);
|
||||
ok(avail <= 20000, "avail = %u\n", avail);
|
||||
|
||||
SET_WINE_ALLOW(INTERNET_STATUS_CLOSING_CONNECTION);
|
||||
SET_WINE_ALLOW(INTERNET_STATUS_CONNECTION_CLOSED);
|
||||
|
|
Loading…
Reference in New Issue