From c2ea991e41f4e06f01e6ee661486b96dba3e1821 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joachim=20L=C3=B8vgaard?= Date: Thu, 3 Oct 2024 13:57:53 +0200 Subject: [PATCH] Add trim to console output --- tests/Integration/DeployerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Integration/DeployerTest.php b/tests/Integration/DeployerTest.php index c4fec71..b68792b 100644 --- a/tests/Integration/DeployerTest.php +++ b/tests/Integration/DeployerTest.php @@ -46,6 +46,6 @@ public function it_deploys(): void 'MAILER_DSN' => 'smtp://localhost', ); CONTENT -, $ssh->exec(sprintf('cat %s/.env.local.php', $releasePath))); + , trim($ssh->exec(sprintf('cat %s/.env.local.php', $releasePath)))); } }