Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/AbstractLoopTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

Expand Down