Skip to content

Commit

Permalink
Improve clarity of test assertion message
Browse files Browse the repository at this point in the history
  • Loading branch information
holly-cummins committed Jul 22, 2024
1 parent 3d7b5e8 commit 79c76b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public void buildAllProjects() throws IOException {
*/
public void buildProject(Language language) throws IOException {
final int exitCode = WrapperRunner.run(getProjectWithRealDataDir(language));
Assertions.assertThat(exitCode).as("Run project return status is zero").isZero();
Assertions.assertThat(exitCode).as("Run project return status should be zero").isZero();
}

/**
Expand Down

0 comments on commit 79c76b4

Please sign in to comment.