Core: Change the sleep time in dont_return.php from 100s to 30s

Half a minute is more than enough for the test to finish even in the slowest
browsers and in case of starving the PHP FPM process pool, one has to wait
for only half a minute to try again.
This commit is contained in:
Michał Gołębiowski 2014-03-19 02:29:04 +01:00
parent 55c196e837
commit a10aa3aac5

View File

@ -1,3 +1,3 @@
<?php
sleep(100);
sleep(30);
?>