From e5209e00d0789ed4420e67f504178c1ae137251c Mon Sep 17 00:00:00 2001 From: Cees-Jan Kiewiet Date: Wed, 25 Apr 2018 08:06:46 +0200 Subject: [PATCH] Reverted a test timer change, can't remember of find why this was changed and what failed before the change, as suggested by @clue at https://github.com/reactphp/event-loop/pull/112#discussion_r183640665 --- tests/AbstractLoopTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/AbstractLoopTest.php b/tests/AbstractLoopTest.php index ccf380d8..08ed5242 100644 --- a/tests/AbstractLoopTest.php +++ b/tests/AbstractLoopTest.php @@ -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); });