From 4456bec5852de6c31684fb0324e91d124e7c295b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Mon, 28 Oct 2024 11:25:38 +0000 Subject: [PATCH] Improve test for first log letter missing --- tests/ExecutorTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/ExecutorTest.php b/tests/ExecutorTest.php index 7d04e9b1..5b2ef42a 100644 --- a/tests/ExecutorTest.php +++ b/tests/ExecutorTest.php @@ -126,6 +126,7 @@ public function testLogStream(): void if (!\is_null($previousTimestamp)) { $this->assertGreaterThanOrEqual($previousTimestamp, $streamChunk['timestamp']); + $this->assertStringStartsWith('Preparing for build', $streamChunk['content']); } else { $firstTimestamp = null; }