https://git.reactos.org/?p=reactos.git;a=commitdiff;h=28088ab25da735ce57dd9…
commit 28088ab25da735ce57dd9feeb5eab56ab5e8a01b
Author: Eric Kohl <eric.kohl(a)reactos.org>
AuthorDate: Mon Dec 19 17:58:02 2022 +0100
Commit: Eric Kohl <eric.kohl(a)reactos.org>
CommitDate: Mon Dec 19 17:58:02 2022 +0100
[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);