[Gradle] Fix ConfigurationCacheIT.testCommonizer

... after removing Project parameter for 'getCommonizerTarget' calls

KT-55238
This commit is contained in:
Sebastian Sellmair
2022-12-05 16:12:38 +01:00
committed by Space Team
parent 7258926db6
commit 56b57f1908
@@ -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.")
}
}
}