From dbdc30fd948a653953eff5b837a457a07886a75a Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Thu, 21 Aug 2014 00:18:24 +0400 Subject: [PATCH] Ignore decompiler problem, just show trouble declarations --- .../jet/jvm/compiler/IdeaJdkAnnotationsReflectedTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/tests/org/jetbrains/jet/jvm/compiler/IdeaJdkAnnotationsReflectedTest.java b/compiler/tests/org/jetbrains/jet/jvm/compiler/IdeaJdkAnnotationsReflectedTest.java index c6479b017c6..532386a8598 100644 --- a/compiler/tests/org/jetbrains/jet/jvm/compiler/IdeaJdkAnnotationsReflectedTest.java +++ b/compiler/tests/org/jetbrains/jet/jvm/compiler/IdeaJdkAnnotationsReflectedTest.java @@ -159,7 +159,7 @@ public class IdeaJdkAnnotationsReflectedTest extends KotlinTestWithEnvironment { if (!declarationsWithMissingAnnotations.isEmpty()) { StringBuilder builder = new StringBuilder("Annotations missing for JDK items:\n"); for (PsiModifierListOwner declaration : declarationsWithMissingAnnotations) { - builder.append(PsiFormatUtil.getExternalName(declaration) + " " + declaration.getText()).append("\n"); + builder.append(PsiFormatUtil.getExternalName(declaration)).append("\n"); } fail(builder.toString()); }