We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cfecce commit f4a7374Copy full SHA for f4a7374
1 file changed
tests/e2e/ExecutorTest.php
@@ -644,7 +644,7 @@ public function testBuildCache(): void
644
$firstBuildOutput .= $outputItem['content'];
645
}
646
647
- $this->assertStringContainsString('[build cache] Saved.', $firstBuildOutput);
+ $this->assertStringContainsString('Build cache saved.', $firstBuildOutput);
648
649
$params = [
650
'runtimeId' => 'test-build-cache-hit-' . $runtimeId,
@@ -665,7 +665,7 @@ public function testBuildCache(): void
665
$secondBuildOutput .= $outputItem['content'];
666
667
668
- $this->assertStringContainsString('[build cache] Hit.', $secondBuildOutput);
+ $this->assertStringContainsString('Build cache hit.', $secondBuildOutput);
669
670
$this->assertNotEmpty($response['body']['path']);
671
0 commit comments