diff --git a/utbot-framework-test/src/test/kotlin/org/utbot/examples/codegen/ClassWithStaticAndInnerClassesTest.kt b/utbot-framework-test/src/test/kotlin/org/utbot/examples/codegen/ClassWithStaticAndInnerClassesTest.kt index 0f9f32fdb7..8b645afee8 100644 --- a/utbot-framework-test/src/test/kotlin/org/utbot/examples/codegen/ClassWithStaticAndInnerClassesTest.kt +++ b/utbot-framework-test/src/test/kotlin/org/utbot/examples/codegen/ClassWithStaticAndInnerClassesTest.kt @@ -12,8 +12,8 @@ import org.utbot.tests.infrastructure.TestExecution internal class ClassWithStaticAndInnerClassesTest : UtValueTestCaseChecker( testClass = ClassWithStaticAndInnerClasses::class, pipelines = listOf( - TestLastStage(CodegenLanguage.JAVA, lastStage = TestExecution, parameterizedModeLastStage = Compilation), - TestLastStage(CodegenLanguage.KOTLIN, lastStage = TestExecution) + TestLastStage(CodegenLanguage.JAVA), + TestLastStage(CodegenLanguage.KOTLIN) ) ) { @Test diff --git a/utbot-framework-test/src/test/kotlin/org/utbot/examples/mock/MockStaticMethodExampleTest.kt b/utbot-framework-test/src/test/kotlin/org/utbot/examples/mock/MockStaticMethodExampleTest.kt index fcdbf694ad..fc7beb513e 100644 --- a/utbot-framework-test/src/test/kotlin/org/utbot/examples/mock/MockStaticMethodExampleTest.kt +++ b/utbot-framework-test/src/test/kotlin/org/utbot/examples/mock/MockStaticMethodExampleTest.kt @@ -19,7 +19,7 @@ internal class MockStaticMethodExampleTest : UtValueTestCaseChecker( testClass = MockStaticMethodExample::class, testCodeGeneration = true, pipelines = listOf( - TestLastStage(CodegenLanguage.JAVA, lastStage = TestExecution, parameterizedModeLastStage = Compilation), + TestLastStage(CodegenLanguage.JAVA, lastStage = TestExecution), TestLastStage(CodegenLanguage.KOTLIN, lastStage = CodeGeneration) ) ) {