mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
testdata path fixed
This commit is contained in:
@@ -14,12 +14,12 @@ import com.jetbrains.python.psi.*;
|
||||
|
||||
public class PyResolveTest extends PyResolveTestCase {
|
||||
private PsiElement resolve() throws Exception {
|
||||
PsiReference ref = configureByFile("/resolve/" + getTestName(false) + ".py");
|
||||
PsiReference ref = configureByFile("resolve/" + getTestName(false) + ".py");
|
||||
return ref.resolve();
|
||||
}
|
||||
|
||||
private ResolveResult[] multiResolve() throws Exception {
|
||||
PsiReference ref = configureByFile(getTestName(false) + ".py");
|
||||
PsiReference ref = configureByFile("resolve/" + getTestName(false) + ".py");
|
||||
assertTrue(ref instanceof PsiPolyVariantReference);
|
||||
return ((PsiPolyVariantReference)ref).multiResolve(false);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user