mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Django Test fix
This commit is contained in:
@@ -242,19 +242,6 @@ public abstract class PyTestCase extends UsefulTestCase {
|
||||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return completion strings suggested by {@link com.intellij.testFramework.fixtures.CodeInsightTestFixture#completeBasic()}
|
||||
*/
|
||||
@NotNull
|
||||
protected List<String> getCompletionStrings() {
|
||||
final LookupElement[] elements = myFixture.completeBasic();
|
||||
final List<String> result = new ArrayList<String>(elements.length);
|
||||
for (final LookupElement element : elements) {
|
||||
result.add(element.getLookupString());
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns elements certain element allows to navigate to (emulates CTRL+Click, actually).
|
||||
* You need to pass element as argument or
|
||||
|
||||
Reference in New Issue
Block a user