From 68c13bd700e850d0f4e503f6f1a4bede44df6472 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Dufraisse?= Date: Thu, 4 Jan 2024 11:30:31 +0100 Subject: [PATCH] fix(ConsoleServiceTest): wait 1 second more to wait the result to test --- tests/includes/services/ConsoleServiceTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/includes/services/ConsoleServiceTest.php b/tests/includes/services/ConsoleServiceTest.php index 06620348b..3a229280c 100644 --- a/tests/includes/services/ConsoleServiceTest.php +++ b/tests/includes/services/ConsoleServiceTest.php @@ -138,7 +138,7 @@ public function testAsync(ConsoleService $consoleService) "-w",1, ]); $process->wait(); - sleep(2); + sleep(3); $content = file_get_contents($tmp_path); unlink($tmp_path);