Remove dependency on kotlin-test in IC test

KT-8487

Original commit: 4f2f0f0a60
This commit is contained in:
Alexey Tsvetkov
2016-03-02 16:27:58 +03:00
parent 36235e85e7
commit f18ec129fb
2 changed files with 2 additions and 2 deletions
@@ -1,6 +1,6 @@
package test
fun a(ref: kotlin.test.Asserter) {
fun a(ref: List<String>) {
b(ref)
println(":)")
}
@@ -1,6 +1,6 @@
package test
fun b(ref: kotlin.test.Asserter) {
fun b(ref: List<String>) {
a(ref)
println(":)")
}