diff --git a/kotlin-native/backend.native/tests/interop/objc/tests/structWithNSObject.kt b/kotlin-native/backend.native/tests/interop/objc/tests/structWithNSObject.kt index 67459f8b17f..4c785b15957 100644 --- a/kotlin-native/backend.native/tests/interop/objc/tests/structWithNSObject.kt +++ b/kotlin-native/backend.native/tests/interop/objc/tests/structWithNSObject.kt @@ -42,13 +42,13 @@ fun testStructWithNSObject() { struct.dictionary = null assertEquals(null, struct.dictionary) struct.dictionary = mapOf("k1" to "v1", "k2" to "v2") - assertEquals(mapOf("k1" to "v1", "k2" to "v2"), struct.dictionary) + assertEquals(mapOf("k1" to "v1", "k2" to "v2"), struct.dictionary) struct.mutableArray = null assertEquals(null, struct.mutableArray) struct.mutableArray = mutableListOf(1, 2) struct.mutableArray!! += 3 - assertEquals(mutableListOf(1, 2, 3), struct.mutableArray) + assertEquals(mutableListOf(1, 2, 3), struct.mutableArray) // Check that subtyping via Nothing-returning functions does not break compiler. assertFailsWith {