diff --git a/idea/testData/quickfix/override/typeMismatchOnOverride/cantChangeMultipleOverriddenPropertiesTypes.kt b/idea/testData/quickfix/override/typeMismatchOnOverride/cantChangeMultipleOverriddenPropertiesTypes.kt
index 5e92b8cdb87..9ade4150f35 100644
--- a/idea/testData/quickfix/override/typeMismatchOnOverride/cantChangeMultipleOverriddenPropertiesTypes.kt
+++ b/idea/testData/quickfix/override/typeMismatchOnOverride/cantChangeMultipleOverriddenPropertiesTypes.kt
@@ -1,6 +1,5 @@
// "Change 'A.x' type to '(Int) -> Int'" "false"
// ACTION: Change 'C.x' type to '(String) -> Int'
-// ACTION: Introduce backing property
// ERROR: Return type is '(kotlin.Int) → kotlin.Int', which is not a subtype of overridden
public abstract val x: (kotlin.String) → kotlin.Int defined in A
interface A {
val x: (String) -> Int
diff --git a/idea/testData/quickfix/typeMismatch/dontChangeOverriddenPropertyTypeToErrorType.kt b/idea/testData/quickfix/typeMismatch/dontChangeOverriddenPropertyTypeToErrorType.kt
index 46bba04c05b..753ae956121 100644
--- a/idea/testData/quickfix/typeMismatch/dontChangeOverriddenPropertyTypeToErrorType.kt
+++ b/idea/testData/quickfix/typeMismatch/dontChangeOverriddenPropertyTypeToErrorType.kt
@@ -1,6 +1,5 @@
// "Change 'B.x' type to '(String) -> [ERROR : Ay]'" "false"
// ACTION: Change 'A.x' type to '(Int) -> Int'
-// ACTION: Introduce backing propertty
// ERROR: Return type is '(kotlin.Int) → kotlin.Int', which is not a subtype of overridden
public abstract val x: (kotlin.String) → [ERROR : Ay] defined in A
// ERROR: Unresolved reference: Ay
interface A {