File tree 1 file changed +2
-2
lines changed
src/test/java/pl/project13/maven/git
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
78
78
// it does not matter if we read as UTF-8 or ISO-8859-1
79
79
{
80
80
Properties propertiesFromFile = GenericFileManager .readProperties (
81
- CommitIdPropertiesOutputFormat .PROPERTIES , expectedFile , StandardCharsets .UTF_8 );
81
+ CommitIdPropertiesOutputFormat .PROPERTIES , expectedFile , StandardCharsets .UTF_8 );
82
82
assertGitPropertiesPresentInProject (propertiesFromFile );
83
83
assertThat (propertiesFromFile .get ("git.commit.message.full" ))
84
84
.isEqualTo (propertiesInProject .get ("git.commit.message.full" ));
85
85
}
86
86
{
87
87
Properties propertiesFromFile = GenericFileManager .readProperties (
88
- CommitIdPropertiesOutputFormat .PROPERTIES , expectedFile , StandardCharsets .ISO_8859_1 );
88
+ CommitIdPropertiesOutputFormat .PROPERTIES , expectedFile , StandardCharsets .ISO_8859_1 );
89
89
assertGitPropertiesPresentInProject (propertiesFromFile );
90
90
assertThat (propertiesFromFile .get ("git.commit.message.full" ))
91
91
.isEqualTo (propertiesInProject .get ("git.commit.message.full" ));
You can’t perform that action at this time.
0 commit comments