From c4eec88fc9ac6ac555feb3959492d47f2ab1d455 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Fri, 30 Dec 2016 20:47:40 +0100 Subject: [PATCH] Reenable some tests that were somehow disabled. --- test/test_api/test_call_signatures.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/test_api/test_call_signatures.py b/test/test_api/test_call_signatures.py index 24d77f53..5d09cdc9 100644 --- a/test/test_api/test_call_signatures.py +++ b/test/test_api/test_call_signatures.py @@ -50,14 +50,13 @@ class TestCallSignatures(TestCase): def test_more_complicated(self): run = self._run_simple - ''' + s4 = 'abs(zip(), , set,' run(s4, None, column=3) run(s4, 'abs', 0, 4) run(s4, 'zip', 0, 8) run(s4, 'abs', 0, 9) - #run(s4, 'abs', 1, 10) - ''' + run(s4, 'abs', None, 10) s5 = "sorted(1,\nif 2:\n def a():" run(s5, 'sorted', 0, 7)