From b2d9254bfd34d668c9d18a438229fe202ca044a5 Mon Sep 17 00:00:00 2001 From: Zalim Bashorov Date: Tue, 28 Aug 2018 15:05:31 +0300 Subject: [PATCH] Fix testdata --- .../diagnostics/testsWithJsStdLib/platformDependent.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/testData/diagnostics/testsWithJsStdLib/platformDependent.kt b/compiler/testData/diagnostics/testsWithJsStdLib/platformDependent.kt index 7a5381d24c7..999f379fc9b 100644 --- a/compiler/testData/diagnostics/testsWithJsStdLib/platformDependent.kt +++ b/compiler/testData/diagnostics/testsWithJsStdLib/platformDependent.kt @@ -1,5 +1,5 @@ fun test(m: Map, mm: MutableMap) { - m.getOrDefault("2", 1) - mm.getOrDefault(1, "2") + m.getOrDefault("2", 1) + mm.getOrDefault(1, "2") mm.remove(1, "2") }