override fun responsibleChanged()

in src/main/kotlin/jetbrains/buildServer/notification/slackNotifier/notification/PlainMessageBuilder.kt [76:89]


    override fun responsibleChanged(
            oldValue: TestNameResponsibilityEntry?,
            newValue: TestNameResponsibilityEntry,
            project: SProject
    ): MessagePayload {
        return MessagePayload(
                "Investigation of" +
                        " ${format.url(
                                links.getTestDetailsUrl(project.externalId, newValue.testNameId),
                                newValue.testName.asString
                        )} test failure changed in" +
                        " ${format.url(links.getProjectPageUrl(project.externalId), project.fullName)}"
        )
    }