diff --git a/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/collections/mutableSetOf.kt b/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/collections/mutableSetOf.kt index 6fe2a67576e..4704432605b 100644 --- a/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/collections/mutableSetOf.kt +++ b/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/collections/mutableSetOf.kt @@ -1,6 +1,6 @@ // WITH_RUNTIME // MIN_JAVA_VERSION: 9 -// FIX: Replace with `mtableSetOf` function +// FIX: Replace with `mutableSetOf` function fun test() { val a = java.util.Set.of() diff --git a/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/collections/mutableSetOf.kt.after b/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/collections/mutableSetOf.kt.after index c4ff629c518..3c5587b0162 100644 --- a/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/collections/mutableSetOf.kt.after +++ b/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/collections/mutableSetOf.kt.after @@ -1,6 +1,6 @@ // WITH_RUNTIME // MIN_JAVA_VERSION: 9 -// FIX: Replace with `mtableSetOf` function +// FIX: Replace with `mutableSetOf` function fun test() { val a = mutableSetOf()