From 28088ab25da735ce57dd9feeb5eab56ab5e8a01b Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Mon, 19 Dec 2022 17:58:02 +0100 Subject: [PATCH] [RPCRT4_WINETEST] Remove obsolete todo_wine Addendum to 00ccbd2f --- modules/rostests/winetests/rpcrt4/rpc.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/rostests/winetests/rpcrt4/rpc.c b/modules/rostests/winetests/rpcrt4/rpc.c index dcf7a2d9608..32cd77bdafc 100644 --- a/modules/rostests/winetests/rpcrt4/rpc.c +++ b/modules/rostests/winetests/rpcrt4/rpc.c @@ -634,14 +634,11 @@ static void test_RpcStringBindingParseA(void) /* test with invalid binding */ status = RpcStringBindingParseA(invalid_binding, &uuid, &protseq, &network_addr, &endpoint, &options); - todo_wine ok(status == RPC_S_INVALID_STRING_BINDING, "RpcStringBindingParseA should have returned RPC_S_INVALID_STRING_BINDING instead of %d\n", status); - todo_wine ok(uuid == NULL, "uuid was %p instead of NULL\n", uuid); if (uuid) RpcStringFreeA(&uuid); ok(protseq == NULL, "protseq was %p instead of NULL\n", protseq); - todo_wine ok(network_addr == NULL, "network_addr was %p instead of NULL\n", network_addr); if (network_addr) RpcStringFreeA(&network_addr);