[Native][tests] Minor: Mark TestProperty as private, it should not be used outside of the file

This commit is contained in:
Dmitriy Dolovov
2022-09-30 18:08:30 +02:00
committed by Space Team
parent 2f85b4928e
commit 753ad9f29c
+1 -1
View File
@@ -4,7 +4,7 @@ import org.gradle.api.Project
import org.gradle.kotlin.dsl.project
import org.gradle.api.artifacts.Configuration
enum class TestProperty(shortName: String) {
private enum class TestProperty(shortName: String) {
// Use a separate Gradle property to pass Kotlin/Native home to tests: "kotlin.internal.native.test.nativeHome".
// Don't use "kotlin.native.home" and similar properties for this purpose, as these properties may have undesired
// effect on other Gradle tasks (ex: :kotlin-native:dist) that might be executed along with test task.