Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
xepozz committed May 28, 2024
1 parent 1e6cd82 commit e30e4db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Unit/Inspector/Command/BashCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}
}

0 comments on commit e30e4db

Please sign in to comment.