diff --git a/idea/testData/quickfix/abstract/nonMemberFunctionNoBody.kt b/idea/testData/quickfix/abstract/nonMemberFunctionNoBody.kt index 666e6d6069f..6847c5912ad 100644 --- a/idea/testData/quickfix/abstract/nonMemberFunctionNoBody.kt +++ b/idea/testData/quickfix/abstract/nonMemberFunctionNoBody.kt @@ -1,4 +1,2 @@ // "Add function body" "true" -package a { fun foo() -} \ No newline at end of file diff --git a/idea/testData/quickfix/abstract/nonMemberFunctionNoBody.kt.after b/idea/testData/quickfix/abstract/nonMemberFunctionNoBody.kt.after index 2ba629e72c6..3be25643ed8 100644 --- a/idea/testData/quickfix/abstract/nonMemberFunctionNoBody.kt.after +++ b/idea/testData/quickfix/abstract/nonMemberFunctionNoBody.kt.after @@ -1,5 +1,3 @@ // "Add function body" "true" -package a { - fun foo() { - } -} \ No newline at end of file +fun foo() { +}