[SHELL32_APITEST] Speed up the CUserNotification test in the failure case.

This commit is contained in:
Mark Jansen 2018-09-23 19:27:02 +02:00
parent bf164caae8
commit 7882b6cfe3
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B

View file

@ -200,8 +200,8 @@ START_TEST(CUserNotification)
return;
}
/* Wait a maximum of 1:30 for the thread to finish (the timeout tests take some time) */
dwWait = WaitForSingleObject(hThread, 90 * 1000);
/* Wait a maximum of 60 seconds for the thread to finish (the timeout tests take some time) */
dwWait = WaitForSingleObject(hThread, 60 * 1000);
ok(dwWait == WAIT_OBJECT_0, "WaitForSingleObject returned %lu, expected WAIT_OBJECT_0\n", dwWait);
/* Cleanup and return */