[RPCRT4_WINETEST] Remove obsolete todo_wine

Addendum to 00ccbd2f
This commit is contained in:
Eric Kohl 2022-12-19 17:58:02 +01:00
parent 00ccbd2f39
commit 28088ab25d

View file

@ -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);