aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--integration-tests/maven/src/integrationTest/kotlin/org/jetbrains/dokka/it/maven/MavenIntegrationTest.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/integration-tests/maven/src/integrationTest/kotlin/org/jetbrains/dokka/it/maven/MavenIntegrationTest.kt b/integration-tests/maven/src/integrationTest/kotlin/org/jetbrains/dokka/it/maven/MavenIntegrationTest.kt
index e52debf4..8690d5d6 100644
--- a/integration-tests/maven/src/integrationTest/kotlin/org/jetbrains/dokka/it/maven/MavenIntegrationTest.kt
+++ b/integration-tests/maven/src/integrationTest/kotlin/org/jetbrains/dokka/it/maven/MavenIntegrationTest.kt
@@ -10,9 +10,9 @@ import kotlin.test.assertTrue
class MavenIntegrationTest : AbstractIntegrationTest() {
- val currentDokkaVersion: String = checkNotNull(System.getenv("DOKKA_VERSION"))
+ private val currentDokkaVersion: String = checkNotNull(System.getenv("DOKKA_VERSION"))
- val mavenBinaryFile: File = File(checkNotNull(System.getenv("MVN_BINARY_PATH")))
+ private val mavenBinaryFile: File = File(checkNotNull(System.getenv("MVN_BINARY_PATH")))
@BeforeTest
fun prepareProjectFiles() {