Remove internal visibility suppressions in kotlin.test

Internal visibility works fine in MPP, so they are no longer required.
This commit is contained in:
Ilya Gorbunov
2019-02-10 19:23:46 +03:00
parent fef0cc5d2b
commit 18f9b20610
3 changed files with 3 additions and 7 deletions
@@ -197,7 +197,6 @@ private fun checkFailedAssertion(assertion: () -> Unit) {
assertFailsWith<AssertionError> { withDefaultAsserter(assertion) }
}
@Suppress("INVISIBLE_MEMBER")
private fun withDefaultAsserter(block: () -> Unit) {
val current = overrideAsserter(DefaultAsserter)
try {