From 2e5ee6313cb3014ae02c275ed870d670a4fc4b30 Mon Sep 17 00:00:00 2001 From: Baptiste Langlade Date: Sun, 18 Dec 2022 14:27:27 +0100 Subject: [PATCH] increase allowed delta for the children to finish --- tests/CurrentProcess/ChildrenTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CurrentProcess/ChildrenTest.php b/tests/CurrentProcess/ChildrenTest.php index 8a5ded4..81459af 100644 --- a/tests/CurrentProcess/ChildrenTest.php +++ b/tests/CurrentProcess/ChildrenTest.php @@ -68,6 +68,6 @@ public function testWait() $this->assertSame(0, $code->toInt()); }); $delta = \microtime(true) - $start; - $this->assertEqualsWithDelta(3, $delta, 0.1); + $this->assertEqualsWithDelta(3, $delta, 0.2); } }