From 08f3de268a2c91d34da4de94e5ea5b3b54a4e210 Mon Sep 17 00:00:00 2001 From: Connor McAdams Date: Wed, 20 Sep 2023 08:56:28 -0400 Subject: [PATCH] uiautomationcore/tests: Increase wait timeout for cross-process event with navigation. Signed-off-by: Connor McAdams --- dlls/uiautomationcore/tests/uiautomation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/uiautomationcore/tests/uiautomation.c b/dlls/uiautomationcore/tests/uiautomation.c index ec2e7e31d6b..f396adc1200 100644 --- a/dlls/uiautomationcore/tests/uiautomation.c +++ b/dlls/uiautomationcore/tests/uiautomation.c @@ -15312,7 +15312,7 @@ static void test_UiaAddEvent_client_proc(void) SET_EXPECT(uia_event_callback); post_event_message(hwnd, WM_UIA_TEST_RAISE_EVENT, 0, PROVIDER_CHILD_ID, ProviderOptions_ServerSideProvider); - ok(!WaitForSingleObject(EventData.event_handle, 2000), "Wait for event_handle failed.\n"); + ok(!WaitForSingleObject(EventData.event_handle, 5000), "Wait for event_handle failed.\n"); CHECK_CALLED(prov_callback_base_hwnd); CHECK_CALLED_MULTI(prov_callback_nonclient, 2); todo_wine CHECK_CALLED_MULTI(prov_callback_proxy, 2);