diff --git a/idea/testData/quickfix/autoImports/afterLibraryTopLevelFunctionImportRuntime.kt b/idea/testData/quickfix/autoImports/afterLibraryTopLevelFunctionImportRuntime.kt index 63224b5030a..43e49e0e952 100644 --- a/idea/testData/quickfix/autoImports/afterLibraryTopLevelFunctionImportRuntime.kt +++ b/idea/testData/quickfix/autoImports/afterLibraryTopLevelFunctionImportRuntime.kt @@ -1,8 +1,8 @@ -// "Import Class" "true" +// "Import" "true" package some import kotlin.util.measureTimeNano fun testFun() { measureTimeNano() -} \ No newline at end of file +} diff --git a/idea/testData/quickfix/autoImports/beforeLibraryTopLevelFunctionImportRuntime.kt b/idea/testData/quickfix/autoImports/beforeLibraryTopLevelFunctionImportRuntime.kt index 5dc55652e93..002dd24225e 100644 --- a/idea/testData/quickfix/autoImports/beforeLibraryTopLevelFunctionImportRuntime.kt +++ b/idea/testData/quickfix/autoImports/beforeLibraryTopLevelFunctionImportRuntime.kt @@ -1,6 +1,6 @@ -// "Import Class" "true" +// "Import" "true" package some fun testFun() { measureTimeNano() -} \ No newline at end of file +} diff --git a/idea/testData/quickfix/autoImports/classImport.after.kt b/idea/testData/quickfix/autoImports/classImport.after.kt index e6c19003945..4ddc3857bc0 100644 --- a/idea/testData/quickfix/autoImports/classImport.after.kt +++ b/idea/testData/quickfix/autoImports/classImport.after.kt @@ -1,7 +1,7 @@ -// "Import Class" "true" +// "Import" "true" import TestData.TestSample fun test() { val a = TestSample -} \ No newline at end of file +} diff --git a/idea/testData/quickfix/autoImports/classImport.before.Main.kt b/idea/testData/quickfix/autoImports/classImport.before.Main.kt index 9136601298a..ab8cea6b991 100644 --- a/idea/testData/quickfix/autoImports/classImport.before.Main.kt +++ b/idea/testData/quickfix/autoImports/classImport.before.Main.kt @@ -1,5 +1,5 @@ -// "Import Class" "true" +// "Import" "true" fun test() { val a = TestSample -} \ No newline at end of file +} diff --git a/idea/testData/quickfix/autoImports/extensionFunctionImport.after.kt b/idea/testData/quickfix/autoImports/extensionFunctionImport.after.kt index 5073d950939..c30acf30a0c 100644 --- a/idea/testData/quickfix/autoImports/extensionFunctionImport.after.kt +++ b/idea/testData/quickfix/autoImports/extensionFunctionImport.after.kt @@ -1,4 +1,4 @@ -// "Import Class" "true" +// "Import" "true" package testingExtensionFunctionsImport import testingExtensionFunctionsImport.data.someFun @@ -6,4 +6,4 @@ import testingExtensionFunctionsImport.data.someFun fun some() { val str = "" str.someFun() -} \ No newline at end of file +} diff --git a/idea/testData/quickfix/autoImports/extensionFunctionImport.before.Main.kt b/idea/testData/quickfix/autoImports/extensionFunctionImport.before.Main.kt index 4bece8b061b..5fd44e63d99 100644 --- a/idea/testData/quickfix/autoImports/extensionFunctionImport.before.Main.kt +++ b/idea/testData/quickfix/autoImports/extensionFunctionImport.before.Main.kt @@ -1,7 +1,7 @@ -// "Import Class" "true" +// "Import" "true" package testingExtensionFunctionsImport fun some() { val str = "" str.someFun() -} \ No newline at end of file +} diff --git a/idea/testData/quickfix/autoImports/functionImport.after.kt b/idea/testData/quickfix/autoImports/functionImport.after.kt index 7260291843f..8579b97024f 100644 --- a/idea/testData/quickfix/autoImports/functionImport.after.kt +++ b/idea/testData/quickfix/autoImports/functionImport.after.kt @@ -1,8 +1,8 @@ -// "Import Class" "true" +// "Import" "true" package functionimporttest import functionimporttest.data.someTestFun fun functionImportTest() { someTestFun() -} \ No newline at end of file +} diff --git a/idea/testData/quickfix/autoImports/functionImport.before.Main.kt b/idea/testData/quickfix/autoImports/functionImport.before.Main.kt index c3cbf9621d9..f35ac3858d2 100644 --- a/idea/testData/quickfix/autoImports/functionImport.before.Main.kt +++ b/idea/testData/quickfix/autoImports/functionImport.before.Main.kt @@ -1,6 +1,6 @@ -// "Import Class" "true" +// "Import" "true" package functionimporttest fun functionImportTest() { someTestFun() -} \ No newline at end of file +}