kotlin-test: binary compatibility for fail function

This commit is contained in:
Sergey Mashkov
2015-12-18 16:25:58 +03:00
parent f21b6a4777
commit a97e623d04
4 changed files with 11 additions and 3 deletions
@@ -23,5 +23,5 @@ class JUnitContributorTest {
@Suppress("PLATFORM_CLASS_MAPPED_TO_KOTLIN")
private val asserter: java.lang.Object
get() = Class.forName("kotlin.test.TestAssertionsKt").getMethod("getAsserter").invoke(null) as java.lang.Object
get() = Class.forName("kotlin.test.AssertionsKt").getMethod("getAsserter").invoke(null) as java.lang.Object
}