From 67202db3056fff15c03b6b6344415b73605214b3 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Fri, 21 Mar 2014 15:36:13 +0100 Subject: [PATCH] change a test (other library) so that python 3.4 also works --- test/test_api/test_call_signatures.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_api/test_call_signatures.py b/test/test_api/test_call_signatures.py index 8b158f28..335dd325 100644 --- a/test/test_api/test_call_signatures.py +++ b/test/test_api/test_call_signatures.py @@ -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"""