From 98f2922d2e1ce640727c195ebbd2a7101264d092 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Thu, 17 Feb 2022 16:29:58 +0100 Subject: [PATCH] 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 Signed-off-by: Alexandre Julliard --- dlls/ws2_32/tests/afd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ws2_32/tests/afd.c b/dlls/ws2_32/tests/afd.c index d8a78947de4..befd9fc702e 100644 --- a/dlls/ws2_32/tests/afd.c +++ b/dlls/ws2_32/tests/afd.c @@ -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, ¶ms, 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);