diff --git a/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/ir/interpreter/IrInterpreterAfterFir2IrTestGenerated.java b/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/ir/interpreter/IrInterpreterAfterFir2IrTestGenerated.java index 554b6659e19..3462abf9838 100644 --- a/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/ir/interpreter/IrInterpreterAfterFir2IrTestGenerated.java +++ b/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/ir/interpreter/IrInterpreterAfterFir2IrTestGenerated.java @@ -121,12 +121,6 @@ public class IrInterpreterAfterFir2IrTestGenerated extends AbstractIrInterpreter runTest("compiler/testData/ir/interpreter/doWhileLoop.kt"); } - @Test - @TestMetadata("doubleArrayOf.kt") - public void testDoubleArrayOf() throws Exception { - runTest("compiler/testData/ir/interpreter/doubleArrayOf.kt"); - } - @Test @TestMetadata("elvis.kt") public void testElvis() throws Exception { @@ -382,6 +376,12 @@ public class IrInterpreterAfterFir2IrTestGenerated extends AbstractIrInterpreter runTest("compiler/testData/ir/interpreter/collections/arrayOf.kt"); } + @Test + @TestMetadata("doubleArrayOf.kt") + public void testDoubleArrayOf() throws Exception { + runTest("compiler/testData/ir/interpreter/collections/doubleArrayOf.kt"); + } + @Test @TestMetadata("doubleList.kt") public void testDoubleList() throws Exception { diff --git a/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/ir/interpreter/IrInterpreterAfterPsi2IrTestGenerated.java b/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/ir/interpreter/IrInterpreterAfterPsi2IrTestGenerated.java index 85b4e0312c8..e2286b8a07f 100644 --- a/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/ir/interpreter/IrInterpreterAfterPsi2IrTestGenerated.java +++ b/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/ir/interpreter/IrInterpreterAfterPsi2IrTestGenerated.java @@ -121,12 +121,6 @@ public class IrInterpreterAfterPsi2IrTestGenerated extends AbstractIrInterpreter runTest("compiler/testData/ir/interpreter/doWhileLoop.kt"); } - @Test - @TestMetadata("doubleArrayOf.kt") - public void testDoubleArrayOf() throws Exception { - runTest("compiler/testData/ir/interpreter/doubleArrayOf.kt"); - } - @Test @TestMetadata("elvis.kt") public void testElvis() throws Exception { @@ -382,6 +376,12 @@ public class IrInterpreterAfterPsi2IrTestGenerated extends AbstractIrInterpreter runTest("compiler/testData/ir/interpreter/collections/arrayOf.kt"); } + @Test + @TestMetadata("doubleArrayOf.kt") + public void testDoubleArrayOf() throws Exception { + runTest("compiler/testData/ir/interpreter/collections/doubleArrayOf.kt"); + } + @Test @TestMetadata("doubleList.kt") public void testDoubleList() throws Exception { diff --git a/compiler/testData/ir/interpreter/doubleArrayOf.kt b/compiler/testData/ir/interpreter/collections/doubleArrayOf.kt similarity index 100% rename from compiler/testData/ir/interpreter/doubleArrayOf.kt rename to compiler/testData/ir/interpreter/collections/doubleArrayOf.kt