From 4625002efe8aabba6b0074826808645cdaeeba60 Mon Sep 17 00:00:00 2001 From: Igor Yakovlev Date: Mon, 13 May 2019 16:10:52 +0300 Subject: [PATCH] Fix invalid test data for CommonIntentionActionsTest --- .../idea/quickfix/CommonIntentionActionsTest.kt.182 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/idea/tests/org/jetbrains/kotlin/idea/quickfix/CommonIntentionActionsTest.kt.182 b/idea/tests/org/jetbrains/kotlin/idea/quickfix/CommonIntentionActionsTest.kt.182 index b9a219c3778..f55bc0cb551 100644 --- a/idea/tests/org/jetbrains/kotlin/idea/quickfix/CommonIntentionActionsTest.kt.182 +++ b/idea/tests/org/jetbrains/kotlin/idea/quickfix/CommonIntentionActionsTest.kt.182 @@ -286,8 +286,8 @@ class CommonIntentionActionsTest : LightPlatformCodeInsightFixtureTestCase() { ) TestCase.assertEquals( - "KtLightMethodImpl -> org.jetbrains.annotations.NotNull," + - " KtLightFieldForDeclaration -> pkg.myannotation.JavaAnnotation, org.jetbrains.annotations.NotNull", + "KtUltraLightMethodForSourceDeclaration -> org.jetbrains.annotations.NotNull," + + " KtUltraLightField -> pkg.myannotation.JavaAnnotation, org.jetbrains.annotations.NotNull", annotationsString(myFixture.findElementByText("bar", KtModifierListOwner::class.java)) ) } @@ -338,8 +338,8 @@ class CommonIntentionActionsTest : LightPlatformCodeInsightFixtureTestCase() { ) TestCase.assertEquals( - "KtLightMethodImpl -> org.jetbrains.annotations.NotNull," + - " KtLightFieldForDeclaration -> pkg.myannotation.JavaAnnotation, org.jetbrains.annotations.NotNull", + "UltraLightMethodForSourceDeclaration -> org.jetbrains.annotations.NotNull," + + " KtUltraLightField -> pkg.myannotation.JavaAnnotation, org.jetbrains.annotations.NotNull", annotationsString(myFixture.findElementByText("bar", KtModifierListOwner::class.java)) ) }