Skip to content

Commit

Permalink
fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSnoozer committed May 15, 2023
1 parent 6614229 commit ff08649
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@ public void shouldConformPropertiesFileWhenSpecialCharactersInValueString(boolea
// it does not matter if we read as UTF-8 or ISO-8859-1
{
Properties propertiesFromFile = GenericFileManager.readProperties(
CommitIdPropertiesOutputFormat.PROPERTIES, expectedFile, StandardCharsets.UTF_8);
CommitIdPropertiesOutputFormat.PROPERTIES, expectedFile, StandardCharsets.UTF_8);
assertGitPropertiesPresentInProject(propertiesFromFile);
assertThat(propertiesFromFile.get("git.commit.message.full"))
.isEqualTo(propertiesInProject.get("git.commit.message.full"));
}
{
Properties propertiesFromFile = GenericFileManager.readProperties(
CommitIdPropertiesOutputFormat.PROPERTIES, expectedFile, StandardCharsets.ISO_8859_1);
CommitIdPropertiesOutputFormat.PROPERTIES, expectedFile, StandardCharsets.ISO_8859_1);
assertGitPropertiesPresentInProject(propertiesFromFile);
assertThat(propertiesFromFile.get("git.commit.message.full"))
.isEqualTo(propertiesInProject.get("git.commit.message.full"));
Expand Down

0 comments on commit ff08649

Please sign in to comment.