File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/test/java/pl/project13/maven/git Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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" ));
You can’t perform that action at this time.
0 commit comments