1
0
forked from VimPlug/jedi

Fix previously failing test_follow_definition

This commit is contained in:
Takafumi Arakaki
2013-03-15 14:39:51 +01:00
parent c8c1113c55
commit be33f0ad98

View File

@@ -319,7 +319,7 @@ class TestRegression(TestBase):
# attributes
objs = itertools.chain.from_iterable(r.follow_definition() for r in c)
types = [o.type for o in objs]
assert 'Import' not in types and 'Class' in types
assert 'import' not in types and 'class' in types
def test_keyword_definition_doc(self):
""" github jedi-vim issue #44 """