ws2_32/tests: Remove the todo_wine on a test_recv() ok() call.

This test has been succeeding ever since the try_recv() call has
been removed before the server call in sock_recv().

Signed-off-by: Francois Gouget <fgouget@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2022-02-17 16:29:58 +01:00 committed by Alexandre Julliard
parent 4b0c0a6b23
commit 98f2922d2e

View file

@ -1460,7 +1460,7 @@ static void test_recv(void)
memset(buffer, 0xcc, sizeof(buffer));
ret = NtDeviceIoControlFile((HANDLE)client, event, NULL, NULL, &io,
IOCTL_AFD_RECV, &params, sizeof(params), NULL, 0);
todo_wine ok(ret == STATUS_PIPE_DISCONNECTED, "got %#x\n", ret);
ok(ret == STATUS_PIPE_DISCONNECTED, "got %#x\n", ret);
ok(!io.Status, "got status %#x\n", io.Status);
ok(!io.Information, "got information %#Ix\n", io.Information);