From 3f1a43a743f1533624eeb5a4c1a0801a5acf59b7 Mon Sep 17 00:00:00 2001 From: Mikhail Zarechenskiy Date: Mon, 27 Mar 2017 10:36:10 +0300 Subject: [PATCH] Minor, update test data See 8466270 for the reason. Note that actually we do not report errors on such cases because psiElement is not valid, but in tests for intentions we check all errors --- .../removeAtFromAnnotationArgument/atmarkArrayArguments.kt | 1 + .../removeAtFromAnnotationArgument/atmarkArrayArguments.kt.after | 1 + 2 files changed, 2 insertions(+) diff --git a/idea/testData/intentions/removeAtFromAnnotationArgument/atmarkArrayArguments.kt b/idea/testData/intentions/removeAtFromAnnotationArgument/atmarkArrayArguments.kt index fe5ea37d602..023554a036c 100644 --- a/idea/testData/intentions/removeAtFromAnnotationArgument/atmarkArrayArguments.kt +++ b/idea/testData/intentions/removeAtFromAnnotationArgument/atmarkArrayArguments.kt @@ -1,5 +1,6 @@ // WITH_RUNTIME // INTENTION_TEXT: Remove @ from annotation argument +// SKIP_ERRORS_BEFORE annotation class X(val value: Array) annotation class Y() diff --git a/idea/testData/intentions/removeAtFromAnnotationArgument/atmarkArrayArguments.kt.after b/idea/testData/intentions/removeAtFromAnnotationArgument/atmarkArrayArguments.kt.after index 73e663ffcbf..499f81af104 100644 --- a/idea/testData/intentions/removeAtFromAnnotationArgument/atmarkArrayArguments.kt.after +++ b/idea/testData/intentions/removeAtFromAnnotationArgument/atmarkArrayArguments.kt.after @@ -1,5 +1,6 @@ // WITH_RUNTIME // INTENTION_TEXT: Remove @ from annotation argument +// SKIP_ERRORS_BEFORE annotation class X(val value: Array) annotation class Y()