1
0
forked from VimPlug/jedi

Fix a few last tests, now Jedi's working again, tests are passing.

This commit is contained in:
Dave Halter
2014-09-26 16:02:03 +02:00
parent 6f29e802c2
commit 4d7db35340
3 changed files with 5 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ from jedi import Script
def get_definition_and_evaluator(source):
d = Script(dedent(source)).goto_definitions()[0]
return d._name.parent.parent, d._evaluator
return d._name.parent, d._evaluator
def test_function_execution():