From e30e4dbbe6103a96c0ea73e8d067cfa63b001c8e Mon Sep 17 00:00:00 2001 From: Dmitrii Derepko Date: Wed, 29 May 2024 01:46:39 +0300 Subject: [PATCH] Fix test --- tests/Unit/Inspector/Command/BashCommandTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Unit/Inspector/Command/BashCommandTest.php b/tests/Unit/Inspector/Command/BashCommandTest.php index 013da82..1fb8454 100644 --- a/tests/Unit/Inspector/Command/BashCommandTest.php +++ b/tests/Unit/Inspector/Command/BashCommandTest.php @@ -35,7 +35,7 @@ public function testError(): void $response = $command->run(); $this->assertSame(CommandResponse::STATUS_ERROR, $response->getStatus()); - $this->assertSame('failed' . PHP_EOL, $response->getResult()); + $this->assertSame('failed', $response->getResult()); $this->assertSame([], $response->getErrors()); } }