From e5ef5d096e4fed62a0afda2947bd4be8d63cc6cf Mon Sep 17 00:00:00 2001 From: Mikhael Bogdanov Date: Thu, 25 Oct 2018 09:06:52 +0200 Subject: [PATCH] Fix test data --- compiler/testData/codegen/box/when/enumOptimization/kt14597.kt | 2 +- .../testData/codegen/box/when/enumOptimization/kt14597_full.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/testData/codegen/box/when/enumOptimization/kt14597.kt b/compiler/testData/codegen/box/when/enumOptimization/kt14597.kt index 50202f79404..ff715d722a1 100644 --- a/compiler/testData/codegen/box/when/enumOptimization/kt14597.kt +++ b/compiler/testData/codegen/box/when/enumOptimization/kt14597.kt @@ -1,7 +1,7 @@ // CHECK_CASES_COUNT: function=box count=6 // CHECK_IF_COUNT: function=box count=1 -enum class En { A, B, С } +enum class En { A, B, C } fun box(): String { var res = "" diff --git a/compiler/testData/codegen/box/when/enumOptimization/kt14597_full.kt b/compiler/testData/codegen/box/when/enumOptimization/kt14597_full.kt index f69d587ee7f..85cdf6283c2 100644 --- a/compiler/testData/codegen/box/when/enumOptimization/kt14597_full.kt +++ b/compiler/testData/codegen/box/when/enumOptimization/kt14597_full.kt @@ -1,7 +1,7 @@ // CHECK_CASES_COUNT: function=box count=18 // CHECK_IF_COUNT: function=box count=3 -enum class En { A, B, С } +enum class En { A, B, C } fun box(): String { var res1 = "fail"