Skip to content

Commit

Permalink
Reverted a test timer change, can't remember of find why this was cha…
Browse files Browse the repository at this point in the history
…nged and what failed before the change, as suggested by @clue at reactphp#112 (comment)
  • Loading branch information
WyriHaximus committed Dec 10, 2018
1 parent 2655e98 commit e5209e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/AbstractLoopTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ public function testSignalsKeepTheLoopRunning()
$loop = $this->loop;
$function = function () {};
$this->loop->addSignal(SIGUSR1, $function);
$this->loop->addTimer(1.6, function () use ($function, $loop) {
$this->loop->addTimer(1.5, function () use ($function, $loop) {
$loop->removeSignal(SIGUSR1, $function);
});

Expand Down

0 comments on commit e5209e0

Please sign in to comment.