From 5b647416096f41dd5adecb7ff60a52801b86355f Mon Sep 17 00:00:00 2001 From: Ilya Chernikov Date: Thu, 24 Aug 2023 17:32:45 +0200 Subject: [PATCH] LV20: unmute scripting test the test doesn't fail anymore, but should see #KT-60452 --- .../kotlin/scripting/compiler/test/ScriptTemplateTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/scripting/scripting-compiler/tests/org/jetbrains/kotlin/scripting/compiler/test/ScriptTemplateTest.kt b/plugins/scripting/scripting-compiler/tests/org/jetbrains/kotlin/scripting/compiler/test/ScriptTemplateTest.kt index a80cad14a0f..60a6a13fc1f 100644 --- a/plugins/scripting/scripting-compiler/tests/org/jetbrains/kotlin/scripting/compiler/test/ScriptTemplateTest.kt +++ b/plugins/scripting/scripting-compiler/tests/org/jetbrains/kotlin/scripting/compiler/test/ScriptTemplateTest.kt @@ -121,7 +121,7 @@ class ScriptTemplateTest : TestCase() { } // Fails on K2, see KT-60452 - fun testScriptWithoutParams() = expectTestToFailOnK2 { + fun testScriptWithoutParams() { val messageCollector = TestMessageCollector() val aClass = compileScript("without_params.kts", ScriptWithoutParams::class, null, messageCollector = messageCollector) Assert.assertNotNull("Compilation failed:\n$messageCollector", aClass)