Skip to content

Commit 703c991

Browse files
committed
fix getter for sandbox test file
1 parent 0a93a9b commit 703c991

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/kotlin/org/jetbrains/intellij/tasks/PrepareSandboxTaskSpec.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import kotlin.test.assertTrue
1717
@Suppress("GroovyUnusedAssignment", "PluginXmlValidity", "ComplexRedundantLet")
1818
class PrepareSandboxTaskSpec : IntelliJPluginSpecBase() {
1919

20-
private val sandbox = File(buildDirectory, DEFAULT_SANDBOX)
20+
private val sandbox get() = File(buildDirectory, DEFAULT_SANDBOX)
2121

2222
@Test
2323
fun `prepare sandbox for two plugins`() {

0 commit comments

Comments
 (0)