diff --git a/compiler/tests-common/tests/org/jetbrains/kotlin/test/muteWithDatabase.kt b/compiler/tests-common/tests/org/jetbrains/kotlin/test/muteWithDatabase.kt index d6906010c19..776ba12cf5b 100644 --- a/compiler/tests-common/tests/org/jetbrains/kotlin/test/muteWithDatabase.kt +++ b/compiler/tests-common/tests/org/jetbrains/kotlin/test/muteWithDatabase.kt @@ -13,7 +13,7 @@ private class MutedTest( val issue: String?, val hasFailFile: Boolean ) { - val methodName = key.substringAfterLast(".", "").also { + val methodName = key.substringAfterLast(".", "").replace("`", "").also { if (it.isEmpty()) throw IllegalArgumentException("Can't get method name") } val classNameKey = key.substringBeforeLast(".", "").also {