##// END OF EJS Templates
Move where use_jedi is disabled again back in test
Thomas Kluyver -
Show More
@@ -347,8 +347,8 b' def test_completion_have_signature():'
347 with provisionalcompleter():
347 with provisionalcompleter():
348 ip.Completer.use_jedi = True
348 ip.Completer.use_jedi = True
349 completions = ip.Completer.completions('ope', 3)
349 completions = ip.Completer.completions('ope', 3)
350 ip.Completer.use_jedi = False
351 c = next(completions) # should be `open`
350 c = next(completions) # should be `open`
351 ip.Completer.use_jedi = False
352 assert 'file' in c.signature, "Signature of function was not found by completer"
352 assert 'file' in c.signature, "Signature of function was not found by completer"
353 assert 'encoding' in c.signature, "Signature of function was not found by completer"
353 assert 'encoding' in c.signature, "Signature of function was not found by completer"
354
354
General Comments 0
You need to be logged in to leave comments. Login now