Skip to content

Commit 5c7cc6c

Browse files
committed
Fix compilation in contest
1 parent 28593ef commit 5c7cc6c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • utbot-junit-contest/src/main/kotlin/org/utbot/contest

utbot-junit-contest/src/main/kotlin/org/utbot/contest/Statistics.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ data class CoverageStatistic(val covered: Int, val total: Int)
237237
private fun CoverageInstructionsSet?.getCoverageInfo(classNames: Set<String>): CoverageStatistic = this?.run {
238238
CoverageStatistic(
239239
coveredInstructions.filter {
240-
instr -> classNames.contains(instr.className)
240+
instr -> classNames.contains(instr.classFqn)
241241
}.map { it.id }.distinct().size,
242242
totalInstructions.toInt()
243243
)

0 commit comments

Comments
 (0)