[tests] Fix framework tests after switching to 1.3-M2

This commit is contained in:
Ilya Matveev
2018-09-03 16:20:22 +07:00
committed by Ilya Matveev
parent 98785874e0
commit e2e2eb6d06
@@ -31,8 +31,8 @@ open class FrameworkTest : DefaultTask() {
@Input @Input
lateinit var frameworkName: String lateinit var frameworkName: String
private val testOutput by lazy { private val testOutput: String by lazy {
(project.findProperty("testOutputFramework") as java.io.File).absolutePath project.file(project.property("testOutputFramework")!!).absolutePath
} }
override fun configure(config: Closure<*>): Task { override fun configure(config: Closure<*>): Task {