1
0
forked from VimPlug/jedi

change a test (other library) so that python 3.4 also works

This commit is contained in:
Dave Halter
2014-03-21 15:36:13 +01:00
parent 37ff4cfbd9
commit 67202db305

View File

@@ -103,8 +103,8 @@ class TestCallSignatures(TestCase):
assert Script(s).call_signatures() == []
# jedi-vim #116
s = """import functools; test = getattr(functools, 'partial'); test("""
self._run(s, 'partial', 0)
s = """import itertools; test = getattr(itertools, 'chain'); test("""
self._run(s, 'chain', 0)
def test_call_signature_on_module(self):
"""github issue #240"""