Minor test data update after moving to new idea

This commit is contained in:
Nikolay Krasko
2015-07-17 14:02:16 +03:00
parent cac62fe4c8
commit 87e94aa20b
2 changed files with 2 additions and 2 deletions
@@ -4,5 +4,5 @@ public class TestingUse {
}
fun main() {
val funcInfunc = TestingUse().test6({ f -> f(5) > 20}, {x -> x + 2})
val funcInfunc = TestingUse().test6({ f -> f(5) > 20}, { x -> x + 2})
}
@@ -4,5 +4,5 @@ public class TestingUse {
}
fun main() {
val funcInfunc = TestingUse().test6({ f: (Int) -> Int -> f(5) > 20}, {x -> x + 2})
val funcInfunc = TestingUse().test6({ f: (Int) -> Int -> f(5) > 20}, { x -> x + 2})
}