From 3b02f0e42271a1ea6fc8fdc69d984d7500fc8301 Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Fri, 27 Jun 2014 15:21:52 +0400 Subject: [PATCH] Load default descriptor in debugger tests --- .../jetbrains/jet/plugin/debugger/AbstractSmartStepIntoTest.kt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/idea/tests/org/jetbrains/jet/plugin/debugger/AbstractSmartStepIntoTest.kt b/idea/tests/org/jetbrains/jet/plugin/debugger/AbstractSmartStepIntoTest.kt index 7c6d1d558f7..4aedb151db3 100644 --- a/idea/tests/org/jetbrains/jet/plugin/debugger/AbstractSmartStepIntoTest.kt +++ b/idea/tests/org/jetbrains/jet/plugin/debugger/AbstractSmartStepIntoTest.kt @@ -26,6 +26,7 @@ import com.intellij.psi.util.PsiFormatUtil import com.intellij.psi.PsiSubstitutor import com.intellij.psi.util.PsiFormatUtilBase import org.jetbrains.jet.plugin.JetLightCodeInsightFixtureTestCase +import com.intellij.testFramework.LightProjectDescriptor abstract class AbstractSmartStepIntoTest : JetLightCodeInsightFixtureTestCase() { private val fixture: JavaCodeInsightTestFixture @@ -95,4 +96,6 @@ abstract class AbstractSmartStepIntoTest : JetLightCodeInsightFixtureTestCase() override fun getTestDataPath(): String? { return PluginTestCaseBase.getTestDataPathBase() + "/debugger/smartStepInto" } + + override fun getProjectDescriptor() = LightCodeInsightFixtureTestCase.JAVA_LATEST }