diff --git a/idea/testData/quickfix/autoImports/libraryTopLevelFunctionImportJsRuntime.kt b/idea/testData/quickfix/autoImports/libraryTopLevelFunctionImportJsRuntime.kt index fc477b7556b..355acc2d5ca 100644 --- a/idea/testData/quickfix/autoImports/libraryTopLevelFunctionImportJsRuntime.kt +++ b/idea/testData/quickfix/autoImports/libraryTopLevelFunctionImportJsRuntime.kt @@ -3,5 +3,5 @@ package some fun testFun() { - jq() + cos(0.0) } diff --git a/idea/testData/quickfix/autoImports/libraryTopLevelFunctionImportJsRuntime.kt.after b/idea/testData/quickfix/autoImports/libraryTopLevelFunctionImportJsRuntime.kt.after index db97ec8ef81..7c676ea3e58 100644 --- a/idea/testData/quickfix/autoImports/libraryTopLevelFunctionImportJsRuntime.kt.after +++ b/idea/testData/quickfix/autoImports/libraryTopLevelFunctionImportJsRuntime.kt.after @@ -2,8 +2,8 @@ // JS package some -import jquery.jq +import kotlin.math.cos fun testFun() { - jq() + cos(0.0) }