Skip to content

Commit

Permalink
Normalize Windows paths in normalizeString().
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Oct 18, 2023
1 parent c3a3a0d commit 43f0b2f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,6 @@ abstract class AbstractPluginTest extends Specification {
}

private static String normalizeString(String input) {
input.replace("\r\n", "\n")
input.replace("\r\n", "\n").replace("\\\\", "/")
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,6 @@ abstract class AbstractFunctionalTest extends Specification {
}

private static String normalizeString(String input) {
input.replace("\r\n", "\n")
input.replace("\r\n", "\n").replace("\\\\", "/")
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ abstract class AbstractGraalVMMavenFunctionalTest extends Specification {
}

private static String normalizeString(String input) {
input.replace("\r\n", "\n")
input.replace("\r\n", "\n").replace("\\\\", "/")
}

String getArgFileContents() {
Expand Down

0 comments on commit 43f0b2f

Please sign in to comment.