Django Test fix

This commit is contained in:
Ilya.Kazakevich
2014-10-15 17:18:02 +04:00
parent 563fc96482
commit b48ae5d6de
@@ -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