Skip to content

Commit 85f5acc

Browse files
committed
Use relative paths
1 parent 6453f5e commit 85f5acc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

reactive/kotlinx-coroutines-reactive/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencies {
1616
tasks {
1717
val testNG = register<Test>("testNG") {
1818
useTestNG()
19-
reports.html.destination = buildDir.resolve("/reports/testng")
19+
reports.html.destination = file("$buildDir/reports/testng")
2020
include("**/*ReactiveStreamTckTest.*")
2121
// Skip testNG when tests are filtered with --tests, otherwise it simply fails
2222
onlyIf {
@@ -29,7 +29,7 @@ tasks {
2929
}
3030

3131
named<Test>("test") {
32-
reports.html.destination = buildDir.resolve("/reports/junit")
32+
reports.html.destination = file("$buildDir/reports/junit")
3333

3434
dependsOn(testNG)
3535
}

0 commit comments

Comments
 (0)