Fix completion test now that underscored name completion changed.

This commit is contained in:
Dmitry Cheryasov
2010-11-12 14:29:48 +02:00
parent fc250193ea
commit 4ccf3a17ea
5 changed files with 4 additions and 14 deletions
@@ -5,4 +5,5 @@ class X(object):
def g():
return X()
g().testChain().testChain()
g().testChain().testChain()
+2 -1
View File
@@ -5,4 +5,5 @@ class X(object):
def g():
return X()
g().testChain().<caret>
g().testChain().te<caret>
@@ -1,4 +0,0 @@
_zoo = 1
__zar = 2
_zoo
@@ -1,4 +0,0 @@
_zoo = 1
__zar = 2
_<caret>
@@ -83,10 +83,6 @@ public class PythonCompletionTest extends PyLightFixtureTestCase {
doTest();
}
public void testTwoUnderscoresNotOne() {
doTest();
}
public void testKwParamsInCodeUsage() { //PY-1002
doTest();
}