diff --git a/compiler/testData/integration/ant/jvm/wrongCallForCollectionLiteral/build.log.expected b/compiler/testData/integration/ant/jvm/wrongCallForCollectionLiteral/build.log.expected index eef03e6b829..8d374f265a4 100644 --- a/compiler/testData/integration/ant/jvm/wrongCallForCollectionLiteral/build.log.expected +++ b/compiler/testData/integration/ant/jvm/wrongCallForCollectionLiteral/build.log.expected @@ -5,10 +5,10 @@ build: [mkdir] Created dir: [Temp]/classes [javac] Compiling 2 source files to [Temp]/classes [javac] Compiling [[TestData]] => [[Temp]/classes] - [javac] [TestData]/literals.kt:6:9: error: type mismatch: inferred type is FloatArray but IntArray was expected + [javac] [TestData]/literals.kt:6:9: error: argument type mismatch: actual type is 'kotlin/FloatArray' but 'kotlin/IntArray' was expected [javac] @AnnInt([1, 2]) [javac] ^ - [javac] [TestData]/literals.kt:9:9: error: argument type mismatch: actual type is kotlin/FloatArray but kotlin/IntArray was expected + [javac] [TestData]/literals.kt:9:9: error: argument type mismatch: actual type is 'kotlin/FloatArray' but 'kotlin/IntArray' was expected [javac] @AnnInt(intArrayOf(1, 2)) [javac] ^