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

View File

@@ -5,4 +5,5 @@ class X(object):
def g():
return X()
g().testChain().testChain()
g().testChain().testChain()

View File

@@ -5,4 +5,5 @@ class X(object):
def g():
return X()
g().testChain().<caret>
g().testChain().te<caret>

View File

@@ -1,4 +0,0 @@
_zoo = 1
__zar = 2
_zoo

View File

@@ -1,4 +0,0 @@
_zoo = 1
__zar = 2
_<caret>

View File

@@ -83,10 +83,6 @@ public class PythonCompletionTest extends PyLightFixtureTestCase {
doTest();
}
public void testTwoUnderscoresNotOne() {
doTest();
}
public void testKwParamsInCodeUsage() { //PY-1002
doTest();
}