shell32/tests: Wait a bit longer for the explorer window to be created.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Alexandre Julliard 2019-01-10 12:58:48 -06:00
parent 2a9f248b67
commit 2d6de2d129
1 changed files with 1 additions and 1 deletions

View File

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