From 856dd7d909f41102e8fb8130b9674bb403bdd90b Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Thu, 10 Mar 2016 05:54:03 +0300 Subject: [PATCH] Minor: make AbstractBackspaceHandlerTest really abstract. #KT-5728 --- .../editor/backspaceHandler/AbstractBackspaceHandlerTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idea/tests/org/jetbrains/kotlin/idea/editor/backspaceHandler/AbstractBackspaceHandlerTest.kt b/idea/tests/org/jetbrains/kotlin/idea/editor/backspaceHandler/AbstractBackspaceHandlerTest.kt index 2c86fd5f264..b198c87cecb 100644 --- a/idea/tests/org/jetbrains/kotlin/idea/editor/backspaceHandler/AbstractBackspaceHandlerTest.kt +++ b/idea/tests/org/jetbrains/kotlin/idea/editor/backspaceHandler/AbstractBackspaceHandlerTest.kt @@ -22,7 +22,7 @@ import com.intellij.testFramework.EditorTestUtil import com.intellij.testFramework.LightCodeInsightTestCase import java.io.File -open class AbstractBackspaceHandlerTest : LightCodeInsightTestCase() { +abstract class AbstractBackspaceHandlerTest : LightCodeInsightTestCase() { fun doTest(path: String) { configureFromFileText("a.kt", loadFile(path)) EditorTestUtil.executeAction(getEditor(), IdeActions.ACTION_EDITOR_BACKSPACE)