From f384f916f99603c0ee21f1b4cbfb7f91c29570dd Mon Sep 17 00:00:00 2001 From: Daniel M Date: Fri, 26 Apr 2024 17:19:24 -0400 Subject: [PATCH] chore:update dependencies --- .../ghmanager/psi/OutdatedVersionAnnotatorTest.kt | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/test/kotlin/com/dsoftware/ghmanager/psi/OutdatedVersionAnnotatorTest.kt b/src/test/kotlin/com/dsoftware/ghmanager/psi/OutdatedVersionAnnotatorTest.kt index fdeb9b9..e3f063b 100644 --- a/src/test/kotlin/com/dsoftware/ghmanager/psi/OutdatedVersionAnnotatorTest.kt +++ b/src/test/kotlin/com/dsoftware/ghmanager/psi/OutdatedVersionAnnotatorTest.kt @@ -5,7 +5,6 @@ import com.dsoftware.ghmanager.i18n.MessagesBundle.message import com.dsoftware.ghmanager.toolwindow.executeSomeCoroutineTasksAndDispatchAllInvocationEvents import com.fasterxml.jackson.databind.node.JsonNodeFactory import com.intellij.openapi.components.service -import com.intellij.openapi.fileEditor.FileDocumentManager import com.intellij.testFramework.fixtures.CodeInsightTestFixture import com.intellij.testFramework.fixtures.IdeaTestFixtureFactory import com.intellij.testFramework.runInEdtAndWait @@ -35,7 +34,7 @@ class OutdatedVersionAnnotatorTest { } } - fun createTestFixture(testName: String): CodeInsightTestFixture { + private fun createTestFixture(testName: String): CodeInsightTestFixture { val fixtureFactory = IdeaTestFixtureFactory.getFixtureFactory() val tempDirFixture = fixtureFactory.createTempDirTestFixture() @@ -53,8 +52,7 @@ class OutdatedVersionAnnotatorTest { var actionLoaded = false val fixture = createTestFixture("testAnnotate") val psiFile = fixture.configureByText( - ".github/workflows/workflow1.yaml", - """ + ".github/workflows/workflow1.yaml", """ jobs: build: name: Build @@ -65,8 +63,7 @@ class OutdatedVersionAnnotatorTest { """.trimIndent() ) val virtualFile = fixture.createFile( - ".github/workflows/workflow.yaml", - """ + ".github/workflows/workflow.yaml", """ jobs: build: name: Build