in src/main/kotlin/jetbrains/buildServer/notification/slackNotifier/notification/PlainMessageBuilder.kt [205:217]
override fun testsUnmuted(
tests: Collection<STest?>,
muteInfo: MuteInfo,
user: SUser?
): MessagePayload {
val username = detailsFormatter.userName(muteInfo)
val project = detailsFormatter.projectName(muteInfo)
return if (username == null) {
MessagePayload("${tests.size} tests were unmuted in $project.")
} else {
MessagePayload("$username unmuted ${tests.size} tests in $project.")
}
}