From 56b57f190854e4ee561eb628947d4784837273b0 Mon Sep 17 00:00:00 2001 From: Sebastian Sellmair Date: Mon, 5 Dec 2022 16:12:38 +0100 Subject: [PATCH] [Gradle] Fix ConfigurationCacheIT.testCommonizer ... after removing Project parameter for 'getCommonizerTarget' calls KT-55238 --- .../org/jetbrains/kotlin/gradle/ConfigurationCacheIT.kt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/kotlin/org/jetbrains/kotlin/gradle/ConfigurationCacheIT.kt b/libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/kotlin/org/jetbrains/kotlin/gradle/ConfigurationCacheIT.kt index 26689ff787c..762c1cc0f1f 100644 --- a/libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/kotlin/org/jetbrains/kotlin/gradle/ConfigurationCacheIT.kt +++ b/libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/kotlin/org/jetbrains/kotlin/gradle/ConfigurationCacheIT.kt @@ -140,11 +140,7 @@ class ConfigurationCacheIT : AbstractConfigurationCacheIT() { ) { // Reduce the problem numbers when a Task become compatible with GCC. // When all tasks support GCC, replace these assertions with `testConfigurationCacheOf` - assertOutputContains("1 problem was found storing the configuration cache.") - assertOutputContains( - """Task `\S+` of type `[\w.]+CInteropMetadataDependencyTransformationTask`: .+(at execution time is unsupported)|(not supported with the configuration cache)""" - .toRegex() - ) + assertOutputContains("0 problems were found storing the configuration cache.") } } }