comsvcs/tests: Increase the timeout in the implicit MTA test.

Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zebediah Figura 2019-10-25 17:38:05 -05:00 committed by Alexandre Julliard
parent e80d84eb52
commit 80985a27d5
1 changed files with 1 additions and 1 deletions

View File

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