Skip to content

Commit

Permalink
GBLD-1309: using StringVisitorModelInterpolator as superclass
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeDemoulinGebit committed Nov 10, 2023
1 parent 1199673 commit 3014f40
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Scanner;
import java.util.logging.Logger;
import java.util.regex.Pattern;

import static org.assertj.core.api.Assertions.assertThat;
Expand Down Expand Up @@ -101,9 +100,7 @@ public void keepsProfileActivationFile() throws Exception {
Path expectedContentFile = Paths.get(isJdk8() ? EXPECTED_FLATTENED_POM : EXPECTED_FLATTENED_POM_JDK11);
Path actualContentFile = Paths.get(FLATTENED_POM);
String actual = new String(Files.readAllBytes(actualContentFile));
Logger.getLogger(getClass().getName()).severe("ACTUAL ='" + actual + "'");
String expected = new String(Files.readAllBytes(expectedContentFile));
Logger.getLogger(getClass().getName()).severe("EXPECTED='" + expected + "'");
assertThat(actual).isEqualTo(expected);
assertHasLineSeparator(actualContentFile, System.lineSeparator());
}
Expand Down

0 comments on commit 3014f40

Please sign in to comment.