Skip to content

Commit bdc5ff0

Browse files
committed
Fix silent build e2e assertion type
1 parent 1a46c79 commit bdc5ff0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/e2e/ExecutorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ public function testBuild(): void
315315
$response = $this->client->call(Client::METHOD_POST, '/runtimes', [], $params);
316316
$this->assertEquals(400, $response['headers']['status-code']);
317317
$this->assertEquals('build_failed', $response['body']['type']);
318-
$this->assertStringContainsString('Build command exited with code 1.', $response['body']['message']);
318+
$this->assertStringContainsString('Build command exited with code 1.', (string) $response['body']['message']);
319319

320320
/** Invalid cache key */
321321
$params = [

0 commit comments

Comments
 (0)