From 841bb51e650267b4ceb63127feabe879b3b51984 Mon Sep 17 00:00:00 2001 From: Svyatoslav Scherbina Date: Wed, 11 Apr 2018 12:13:40 +0300 Subject: [PATCH] Add workaround to interop_objc_smoke for bug in MM --- backend.native/tests/interop/objc/smoke.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend.native/tests/interop/objc/smoke.kt b/backend.native/tests/interop/objc/smoke.kt index 6effc24674d..5255b144b35 100644 --- a/backend.native/tests/interop/objc/smoke.kt +++ b/backend.native/tests/interop/objc/smoke.kt @@ -46,7 +46,7 @@ fun run() { // hashCode (directly): if (foo.hashCode() == foo.hash().toInt()) { // toString (virtually): - println(map.keys.map { it.toString() }.min() == foo.description()) + println(listOf(foo, pair).map { it.toString() }.min() == foo.description()) } println(globalString)