From e915bc2a69b9ad7202aaae1329444c02e8b8f030 Mon Sep 17 00:00:00 2001 From: Roman Golyshev Date: Tue, 13 Aug 2019 12:46:12 +0300 Subject: [PATCH] fix expected output for `when` statement in scratch files - the behaviour changed due to KT-33127 fixing --- idea/testData/scratch/when.repl.after | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idea/testData/scratch/when.repl.after b/idea/testData/scratch/when.repl.after index 3ba175d3bcc..68264b7c28c 100644 --- a/idea/testData/scratch/when.repl.after +++ b/idea/testData/scratch/when.repl.after @@ -15,7 +15,7 @@ when(a) { // OUTPUT: 1 else -> println("1") } -when(a) { +when(a) { // RESULT: res4: kotlin.Int = 11 1 -> 11 else -> 12 } \ No newline at end of file