diff --git a/idea/testData/quickfix/typeAddition/afterPublicValWithoutReturnType.kt b/idea/testData/quickfix/typeAddition/afterPublicValWithoutReturnType.kt index 4ce950dfa02..d7eb878f3e9 100644 --- a/idea/testData/quickfix/typeAddition/afterPublicValWithoutReturnType.kt +++ b/idea/testData/quickfix/typeAddition/afterPublicValWithoutReturnType.kt @@ -1,4 +1,4 @@ // "Specify type explicitly" "true" package a -public val l: MutableList = java.util.Collections.emptyList() \ No newline at end of file +public val l: List = java.util.Collections.emptyList() \ No newline at end of file diff --git a/idea/testData/quickfix/typeImports/afterHasThisImport.kt b/idea/testData/quickfix/typeImports/afterHasThisImport.kt index 0c191f11df9..d7073c8e881 100644 --- a/idea/testData/quickfix/typeImports/afterHasThisImport.kt +++ b/idea/testData/quickfix/typeImports/afterHasThisImport.kt @@ -9,7 +9,7 @@ import java.util.List class M { trait A { - val l: MutableList + val l: jet.List } } } \ No newline at end of file diff --git a/idea/testData/quickfix/typeImports/afterToImport1.kt b/idea/testData/quickfix/typeImports/afterToImport1.kt index 4de85bcf87e..e5b8fbbe6d1 100644 --- a/idea/testData/quickfix/typeImports/afterToImport1.kt +++ b/idea/testData/quickfix/typeImports/afterToImport1.kt @@ -5,6 +5,6 @@ import java.util.Collections class M { trait A { - abstract val l: MutableList + abstract val l: List } } \ No newline at end of file