From 9665870118ab8944ffb5bd0630093562931149c1 Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Thu, 17 Oct 2019 11:30:12 +0300 Subject: [PATCH] Fix AbstractSmartStepIntoTest tests in 193 --- .../kotlin/idea/debugger/test/AbstractSmartStepIntoTest.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/idea/jvm-debugger/jvm-debugger-test/test/org/jetbrains/kotlin/idea/debugger/test/AbstractSmartStepIntoTest.kt b/idea/jvm-debugger/jvm-debugger-test/test/org/jetbrains/kotlin/idea/debugger/test/AbstractSmartStepIntoTest.kt index faf8068ec29..b6c68a58db1 100644 --- a/idea/jvm-debugger/jvm-debugger-test/test/org/jetbrains/kotlin/idea/debugger/test/AbstractSmartStepIntoTest.kt +++ b/idea/jvm-debugger/jvm-debugger-test/test/org/jetbrains/kotlin/idea/debugger/test/AbstractSmartStepIntoTest.kt @@ -11,7 +11,6 @@ import org.jetbrains.kotlin.idea.debugger.stepping.KotlinSmartStepIntoHandler import org.jetbrains.kotlin.idea.debugger.test.mock.MockSourcePosition import org.jetbrains.kotlin.idea.test.KotlinLightCodeInsightFixtureTestCase import org.jetbrains.kotlin.idea.test.KotlinWithJdkAndRuntimeLightProjectDescriptor -import org.jetbrains.kotlin.idea.test.PluginTestCaseBase import org.jetbrains.kotlin.test.InTextDirectivesUtils abstract class AbstractSmartStepIntoTest : KotlinLightCodeInsightFixtureTestCase() { @@ -19,7 +18,7 @@ abstract class AbstractSmartStepIntoTest : KotlinLightCodeInsightFixtureTestCase get() = myFixture protected fun doTest(path: String) { - fixture.configureByFile(path) + fixture.configureByFile(fileName()) val offset = fixture.caretOffset val line = fixture.getDocument(fixture.file!!)!!.getLineNumber(offset)