From 80985a27d55ca376337536d0535cf4b941c553b6 Mon Sep 17 00:00:00 2001 From: Zebediah Figura Date: Fri, 25 Oct 2019 17:38:05 -0500 Subject: [PATCH] comsvcs/tests: Increase the timeout in the implicit MTA test. Signed-off-by: Zebediah Figura Signed-off-by: Alexandre Julliard --- dlls/comsvcs/tests/dispenser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/comsvcs/tests/dispenser.c b/dlls/comsvcs/tests/dispenser.c index 98d2a91bf5a..10bce8e8492 100644 --- a/dlls/comsvcs/tests/dispenser.c +++ b/dlls/comsvcs/tests/dispenser.c @@ -186,7 +186,7 @@ static void create_dispenser(void) * actually initialize. */ Sleep(200); thread = CreateThread(NULL, 0, com_thread, NULL, 0, NULL); - ok(!WaitForSingleObject(thread, 1000), "wait failed\n"); + ok(!WaitForSingleObject(thread, 20000), "wait failed\n"); GetExitCodeThread(thread, &ret); ok(ret == S_OK, "got unexpected hr %#x\n", ret);