diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2014-03-19 02:29:04 +0100 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2014-03-19 02:29:38 +0100 |
commit | c10af6be1704d704b062e582a22682369874952a (patch) | |
tree | f58893f5b79d86e11bfd9b56dc58ab02339c39f7 | |
parent | 7326c0467e8483722b449a800042c6c89773afb0 (diff) | |
download | jquery-c10af6be1704d704b062e582a22682369874952a.tar.gz jquery-c10af6be1704d704b062e582a22682369874952a.zip |
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.
(cherry-picked from a10aa3aac5223c250327d00c500ceb9c7a18b7f9)
-rw-r--r-- | test/data/core/dont_return.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/data/core/dont_return.php b/test/data/core/dont_return.php index 45565b6e7..1eef33692 100644 --- a/test/data/core/dont_return.php +++ b/test/data/core/dont_return.php @@ -1,3 +1,3 @@ <?php -sleep(100); +sleep(30); ?> |