From 46156af4bd0b4a1d2198e6bb4b3e473323cb240a Mon Sep 17 00:00:00 2001 From: Konstantin Tskhovrebov Date: Thu, 25 Apr 2024 11:20:20 +0200 Subject: [PATCH] [gradle] Disable test because the required kotlin version is not published yet. --- .../compose/test/tests/integration/KotlinCompatibilityTest.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gradle-plugins/compose/src/test/kotlin/org/jetbrains/compose/test/tests/integration/KotlinCompatibilityTest.kt b/gradle-plugins/compose/src/test/kotlin/org/jetbrains/compose/test/tests/integration/KotlinCompatibilityTest.kt index 20ce0765c8..2f0b21921e 100644 --- a/gradle-plugins/compose/src/test/kotlin/org/jetbrains/compose/test/tests/integration/KotlinCompatibilityTest.kt +++ b/gradle-plugins/compose/src/test/kotlin/org/jetbrains/compose/test/tests/integration/KotlinCompatibilityTest.kt @@ -49,6 +49,7 @@ class KotlinCompatibilityTest : GradlePluginTestBase() { } } + /* TODO uncomment the test when Kotlin RC2 will be published @Test fun testNewCompilerPluginError() { val testProject = testProject( @@ -58,5 +59,5 @@ class KotlinCompatibilityTest : GradlePluginTestBase() { testProject.gradleFailure("tasks").checks { check.logContains(newComposeCompilerError) } - } + }*/ }