Skip to content

Commit

Permalink
test: Fix BesuCommandTest
Browse files Browse the repository at this point in the history
Signed-off-by: Usman Saleem <[email protected]>
  • Loading branch information
usmansaleem committed Jul 4, 2024
1 parent 14cb125 commit 4aee1e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ public void callingWithConfigOptionButNonExistingFileShouldDisplayHelp() throws
final Path tempConfigFilePath = createTempFile("an-invalid-file-name-without-extension", "");
parseCommand("--config-file", tempConfigFilePath.toString());

final String expectedOutputStart = "Unable to read TOML configuration file";
final String expectedOutputStart = "Unable to read from empty TOML configuration file.";
assertThat(commandErrorOutput.toString(UTF_8)).startsWith(expectedOutputStart);
assertThat(commandOutput.toString(UTF_8)).isEmpty();
}
Expand Down

0 comments on commit 4aee1e4

Please sign in to comment.