Skip to content

Commit

Permalink
update basename for coverage folders
Browse files Browse the repository at this point in the history
  • Loading branch information
karthyks committed Oct 10, 2023
1 parent da331ab commit e69c212
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class FileSyncTestRunListener(
var basename = entry.relativePath.removeSuffix("/").substringAfterLast('/')
if (testBatch.tests.size == 1) {
val test = testBatch.tests.first()
basename.plus("/${test.pkg}.${test.clazz}#${test.method}")
basename += "/${test.pkg}.${test.clazz}#${test.method}"
}
val subfolder = File(localFolder, basename).apply { mkdirs() }
logger.debug { "Pulling into ${subfolder.absolutePath}" }
Expand Down

0 comments on commit e69c212

Please sign in to comment.