Rename various Java-specific test case classes to include Java in the name; leave old names as deprecations

GitOrigin-RevId: 0f105a6c063ce216f7e22348221ad4cd335295df
This commit is contained in:
Dmitry Jemerov
2019-06-17 11:23:31 +02:00
committed by intellij-monorepo-bot
parent d5b5cfa360
commit 97e0289250
1106 changed files with 4174 additions and 4156 deletions

View File

@@ -15,7 +15,7 @@
*/
package com.jetbrains.jython;
import com.intellij.testFramework.fixtures.LightCodeInsightFixtureTestCase;
import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase;
import com.jetbrains.python.PythonHelpersLocator;
import com.jetbrains.python.inspections.PyCallingNonCallableInspection;
import com.jetbrains.python.inspections.unresolvedReference.PyUnresolvedReferencesInspection;
@@ -23,7 +23,7 @@ import com.jetbrains.python.inspections.unresolvedReference.PyUnresolvedReferenc
/**
* @author yole
*/
public class PyJythonHighlightingTest extends LightCodeInsightFixtureTestCase {
public class PyJythonHighlightingTest extends LightJavaCodeInsightFixtureTestCase {
public void testCallableJavaClass() {
doCallableTest();
}