From 8cf802f2c536a9d026e37c2685f4300dc5cedddc Mon Sep 17 00:00:00 2001 From: techno-express Date: Fri, 14 Feb 2020 22:13:21 -0500 Subject: [PATCH] Update ProcessorTest.php --- tests/ProcessorTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/ProcessorTest.php b/tests/ProcessorTest.php index c28d572..3a7ac82 100644 --- a/tests/ProcessorTest.php +++ b/tests/ProcessorTest.php @@ -102,6 +102,7 @@ public function testLiveOutput() { $process = Processor::create(function () { echo 'hello child'; + usleep(1000); }); $this->expectOutputString('hello child'); $process->showOutput()->run();