From 283a35ee6d37c69bcb01c74c04540e0e705b15c8 Mon Sep 17 00:00:00 2001 From: Stephen Coakley Date: Sat, 26 Sep 2015 01:33:40 -0500 Subject: [PATCH] Increase delay --- tests/TestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index 6bad549..c2770ea 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -95,7 +95,7 @@ abstract class TestCase extends \PHPUnit_Framework_TestCase $status = (int)$function(); exit(0); default: - usleep(1e3); + usleep(1e6); if (pcntl_wait($status) === -1) { $this->fail('Failed to fork process.'); }