From bee0fb62831254b66aa7694e147dbd5cca64d286 Mon Sep 17 00:00:00 2001 From: Michael Bogdanov Date: Tue, 13 Oct 2015 16:16:12 +0300 Subject: [PATCH] Fix test data --- .../pureKotlin/traitClassObjectConstantChanged/const.kt.new | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jps-plugin/testData/incremental/pureKotlin/traitClassObjectConstantChanged/const.kt.new b/jps-plugin/testData/incremental/pureKotlin/traitClassObjectConstantChanged/const.kt.new index 23bfae9ef54..67d312249e9 100644 --- a/jps-plugin/testData/incremental/pureKotlin/traitClassObjectConstantChanged/const.kt.new +++ b/jps-plugin/testData/incremental/pureKotlin/traitClassObjectConstantChanged/const.kt.new @@ -3,6 +3,6 @@ package test interface Trait { companion object { // Old and new constant values are different, but their hashes are the same - val CONST = "Ae" + const val CONST = "Ae" } }