diff --git a/tests/AbstractLoopTest.php b/tests/AbstractLoopTest.php index 3351a8aa..465fee22 100644 --- a/tests/AbstractLoopTest.php +++ b/tests/AbstractLoopTest.php @@ -13,8 +13,8 @@ abstract class AbstractLoopTest extends TestCase public function setUp() { - // HHVM is a bit slow, so give it more time - $this->tickTimeout = defined('HHVM_VERSION') ? 0.02 : 0.005; + // It's a timeout, don't set it too low. Travis and other CI systems are slow. + $this->tickTimeout = 0.02; $this->loop = $this->createLoop(); }