From 87e94aa20b1655df57897a8724cce2cb2936dd18 Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Fri, 17 Jul 2015 14:02:16 +0300 Subject: [PATCH] Minor test data update after moving to new idea --- .../lambdaWithLambdaAsParam.kt.after | 2 +- .../lambdaWithLambdaAsParam.kt.after | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/idea/testData/intentions/removeExplicitLambdaParameterTypes/lambdaWithLambdaAsParam.kt.after b/idea/testData/intentions/removeExplicitLambdaParameterTypes/lambdaWithLambdaAsParam.kt.after index 42d2af38748..1f9d8c45f46 100644 --- a/idea/testData/intentions/removeExplicitLambdaParameterTypes/lambdaWithLambdaAsParam.kt.after +++ b/idea/testData/intentions/removeExplicitLambdaParameterTypes/lambdaWithLambdaAsParam.kt.after @@ -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}) } diff --git a/idea/testData/intentions/specifyExplicitLambdaSignature/lambdaWithLambdaAsParam.kt.after b/idea/testData/intentions/specifyExplicitLambdaSignature/lambdaWithLambdaAsParam.kt.after index 7b53a0a3306..f829687af69 100644 --- a/idea/testData/intentions/specifyExplicitLambdaSignature/lambdaWithLambdaAsParam.kt.after +++ b/idea/testData/intentions/specifyExplicitLambdaSignature/lambdaWithLambdaAsParam.kt.after @@ -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}) }