[PowerAssert] Use OS path separator to parse JUnit5 classpath property

This commit is contained in:
Brian Norman
2024-02-14 07:49:59 -06:00
committed by Space Team
parent 184d773cd0
commit f0268721c1
2 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -49,6 +49,6 @@ projectTest(parallel = true) {
val localJunit5Classpath: FileCollection = junit5Classpath
doFirst {
systemProperty("junit5.classpath", localJunit5Classpath.files.joinToString(",") { it.absolutePath })
systemProperty("junit5.classpath", localJunit5Classpath.asPath)
}
}