Skip to content

Commit e295575

Browse files
authored
Merge pull request #92 from kelunik/test-timeout
Increase test timeout, because Travis is slow
2 parents a35b37f + 08be7c1 commit e295575

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/AbstractLoopTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ abstract class AbstractLoopTest extends TestCase
1313

1414
public function setUp()
1515
{
16-
// HHVM is a bit slow, so give it more time
17-
$this->tickTimeout = defined('HHVM_VERSION') ? 0.02 : 0.005;
16+
// It's a timeout, don't set it too low. Travis and other CI systems are slow.
17+
$this->tickTimeout = 0.02;
1818
$this->loop = $this->createLoop();
1919
}
2020

0 commit comments

Comments
 (0)