From e2e2eb6d06891e15de5b778c57adc74367892770 Mon Sep 17 00:00:00 2001 From: Ilya Matveev Date: Mon, 3 Sep 2018 16:20:22 +0700 Subject: [PATCH] [tests] Fix framework tests after switching to 1.3-M2 --- .../src/main/kotlin/org/jetbrains/kotlin/FrameworkTest.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildSrc/plugins/src/main/kotlin/org/jetbrains/kotlin/FrameworkTest.kt b/buildSrc/plugins/src/main/kotlin/org/jetbrains/kotlin/FrameworkTest.kt index 6be99b07102..114222d96a5 100644 --- a/buildSrc/plugins/src/main/kotlin/org/jetbrains/kotlin/FrameworkTest.kt +++ b/buildSrc/plugins/src/main/kotlin/org/jetbrains/kotlin/FrameworkTest.kt @@ -31,8 +31,8 @@ open class FrameworkTest : DefaultTask() { @Input lateinit var frameworkName: String - private val testOutput by lazy { - (project.findProperty("testOutputFramework") as java.io.File).absolutePath + private val testOutput: String by lazy { + project.file(project.property("testOutputFramework")!!).absolutePath } override fun configure(config: Closure<*>): Task {