From 2d6de2d129b39d2a0c4ffafa84dabed21c0e830e Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Thu, 10 Jan 2019 12:58:48 -0600 Subject: [PATCH] shell32/tests: Wait a bit longer for the explorer window to be created. Signed-off-by: Alexandre Julliard --- dlls/shell32/tests/progman_dde.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/shell32/tests/progman_dde.c b/dlls/shell32/tests/progman_dde.c index 62ed413ad00..2d19404a763 100644 --- a/dlls/shell32/tests/progman_dde.c +++ b/dlls/shell32/tests/progman_dde.c @@ -166,7 +166,7 @@ static BOOL check_window_exists(const char *name) for (i = 0; i < 20; i++) { - Sleep(100); + Sleep(100 * i); if ((window = FindWindowA("ExplorerWClass", title)) || (window = FindWindowA("CabinetWClass", title))) {