Commit 5df86351 authored by Sven Baars's avatar Sven Baars Committed by Alexandre Julliard

httpapi/tests: Use CancelIo to avoid a test failure on Windows XP.

parent bfe02fc7
...@@ -534,7 +534,7 @@ static void test_v1_short_buffer(void) ...@@ -534,7 +534,7 @@ static void test_v1_short_buffer(void)
ok(!ret, "Got error %u.\n", ret); ok(!ret, "Got error %u.\n", ret);
ok(req->RequestId == req_id, "Got request ID %s.\n", wine_dbgstr_longlong(req->RequestId)); ok(req->RequestId == req_id, "Got request ID %s.\n", wine_dbgstr_longlong(req->RequestId));
CancelIoEx(queue, &ovl); CancelIo(queue);
ret = HttpRemoveUrl(queue, localhost_urlW); ret = HttpRemoveUrl(queue, localhost_urlW);
ok(!ret, "Got error %u.\n", ret); ok(!ret, "Got error %u.\n", ret);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment