[Gradle] Remove unnecessary Gradle version requirements for CoCa tests

This commit is contained in:
Alexander Likhachev
2023-01-03 19:12:16 +01:00
committed by Space Team
parent 487439054e
commit 89811f8d95
2 changed files with 2 additions and 4 deletions
@@ -199,7 +199,7 @@ class ConfigurationCacheIT : AbstractConfigurationCacheIT() {
@MppGradlePluginTests
@DisplayName("works in MPP withJava project")
@GradleTestVersions(minVersion = TestVersions.Gradle.G_7_0, maxVersion = TestVersions.Gradle.G_7_1)
@GradleTestVersions(minVersion = TestVersions.Gradle.G_7_0)
@GradleTest
fun testJvmWithJavaConfigurationCache(gradleVersion: GradleVersion) {
project("mppJvmWithJava", gradleVersion) {
@@ -8,10 +8,8 @@ package org.jetbrains.kotlin.gradle
import org.gradle.api.logging.configuration.WarningMode
import org.gradle.util.GradleVersion
import org.jetbrains.kotlin.gradle.plugin.KotlinJsCompilerType
import org.jetbrains.kotlin.gradle.targets.js.NpmVersions
import org.jetbrains.kotlin.gradle.testbase.*
import org.junit.jupiter.api.DisplayName
import javax.inject.Inject
abstract class AbstractJsConfigurationCacheIT(protected val irBackend: Boolean) : KGPBaseTest() {
@Suppress("DEPRECATION")
@@ -59,7 +57,7 @@ abstract class AbstractJsConfigurationCacheIT(protected val irBackend: Boolean)
}
@DisplayName("configuration cache is reused when idea.version system property is changed in browser project")
@GradleTestVersions(minVersion = TestVersions.Gradle.G_7_5, maxVersion = TestVersions.Gradle.G_7_5)
@GradleTestVersions(minVersion = TestVersions.Gradle.G_7_5)
@GradleTest
fun testBrowserDistributionOnIdeaPropertyChange(gradleVersion: GradleVersion) {
project("kotlin-js-browser-project", gradleVersion) {