Skip to content

Commit

Permalink
Fix windows tests?
Browse files Browse the repository at this point in the history
  • Loading branch information
marchermans committed Jun 25, 2024
1 parent 6b35f9c commit c9b7893
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ class E2ETests extends BuilderBasedTestSpecification {
repositories {
maven {
name = 'test'
url = "file://${getTestTempDirectory().absolutePath}${File.separator}maven"
url = "file://${getTestTempDirectory().absolutePath.replace(File.separator, "/")}/maven"
}
}
}
Expand Down Expand Up @@ -549,7 +549,7 @@ class E2ETests extends BuilderBasedTestSpecification {
repositories {
maven {
name = 'test'
url = "file://${getTestTempDirectory().absolutePath}/maven"
url = "file://${getTestTempDirectory().absolutePath.replace(File.separator, "/")}/maven"
}
}
Expand Down

0 comments on commit c9b7893

Please sign in to comment.