Update Gradle verion in tests from 6.1 to 6.1.1

Gradle 6.1 is not suitable for testing because of memory leak on
artefact validation (https://github.com/gradle/gradle/issues/11966)
This commit is contained in:
Andrey Uskov
2021-03-11 21:31:33 +03:00
parent 054c278c83
commit 9c000000cf
2 changed files with 3 additions and 3 deletions
@@ -22,9 +22,9 @@ import org.junit.Assume
sealed class GradleVersionRequired(val minVersion: String, val maxVersion: String?) {
companion object {
const val OLDEST_SUPPORTED = "6.1"
const val OLDEST_SUPPORTED = "6.1.1"
val FOR_MPP_SUPPORT = AtLeast("6.1")
val FOR_MPP_SUPPORT = AtLeast("6.1.1")
}
class Exact(version: String) : GradleVersionRequired(version, version)