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()); } }