diff --git a/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIf.kt b/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIf.kt deleted file mode 100644 index 741973c35c6..00000000000 --- a/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIf.kt +++ /dev/null @@ -1,3 +0,0 @@ -fun test(n: Int): String { - return if (n == 1) "one" else "two" -} \ No newline at end of file diff --git a/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIf.kt.after b/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIf.kt.after deleted file mode 100644 index 28edafffc4f..00000000000 --- a/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIf.kt.after +++ /dev/null @@ -1,3 +0,0 @@ -fun test(n: Int): String { - if (n == 1) return "one" else return "two" -} \ No newline at end of file diff --git a/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIfWithBlocks.kt b/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIfWithBlocks.kt deleted file mode 100644 index 5777e6c7ac1..00000000000 --- a/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIfWithBlocks.kt +++ /dev/null @@ -1,6 +0,0 @@ -fun test(n: Int): String { - return if (n == 1) { - println("***") - "one" - } else "two" -} \ No newline at end of file diff --git a/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIfWithBlocks.kt.after b/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIfWithBlocks.kt.after deleted file mode 100644 index d750043923c..00000000000 --- a/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIfWithBlocks.kt.after +++ /dev/null @@ -1,6 +0,0 @@ -fun test(n: Int): String { - if (n == 1) { - println("***") - return "one" - } else return "two" -} \ No newline at end of file