Skip to content

Commit ff08649

Browse files
author
TheSnoozer
committed
fix checkstyle
1 parent 6614229 commit ff08649

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/pl/project13/maven/git/GitPropertiesFileTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@ public void shouldConformPropertiesFileWhenSpecialCharactersInValueString(boolea
7878
// it does not matter if we read as UTF-8 or ISO-8859-1
7979
{
8080
Properties propertiesFromFile = GenericFileManager.readProperties(
81-
CommitIdPropertiesOutputFormat.PROPERTIES, expectedFile, StandardCharsets.UTF_8);
81+
CommitIdPropertiesOutputFormat.PROPERTIES, expectedFile, StandardCharsets.UTF_8);
8282
assertGitPropertiesPresentInProject(propertiesFromFile);
8383
assertThat(propertiesFromFile.get("git.commit.message.full"))
8484
.isEqualTo(propertiesInProject.get("git.commit.message.full"));
8585
}
8686
{
8787
Properties propertiesFromFile = GenericFileManager.readProperties(
88-
CommitIdPropertiesOutputFormat.PROPERTIES, expectedFile, StandardCharsets.ISO_8859_1);
88+
CommitIdPropertiesOutputFormat.PROPERTIES, expectedFile, StandardCharsets.ISO_8859_1);
8989
assertGitPropertiesPresentInProject(propertiesFromFile);
9090
assertThat(propertiesFromFile.get("git.commit.message.full"))
9191
.isEqualTo(propertiesInProject.get("git.commit.message.full"));

0 commit comments

Comments
 (0)