[Native][tests] localDelegatedPropertyLink - don't use golden data

This commit is contained in:
Dmitriy Dolovov
2021-08-27 19:58:32 +03:00
parent f85c137360
commit 51f30ed995
2 changed files with 3 additions and 2 deletions
@@ -383,7 +383,6 @@ task slackReportNightly(type:NightlyReporter) {
} }
linkTest("localDelegatedPropertyLink") { linkTest("localDelegatedPropertyLink") {
goldValue = "OK\n"
source = "lower/local_delegated_property_link/main.kt" source = "lower/local_delegated_property_link/main.kt"
lib = "lower/local_delegated_property_link/lib.kt" lib = "lower/local_delegated_property_link/lib.kt"
} }
@@ -1,3 +1,5 @@
import kotlin.test.*
fun main() { fun main() {
println(foo()) assertEquals("OK", foo())
} }