1
0
forked from VimPlug/jedi

Further improvements to the interpreter refactoring.

This commit is contained in:
Dave Halter
2016-05-19 01:41:06 +02:00
parent 1bb8d32084
commit a08ad2d53d
3 changed files with 18 additions and 6 deletions

View File

@@ -47,7 +47,7 @@ def test_nested_resolve():
cls = get_completion('X', locals())
func = get_completion('X.x', locals())
assert func.start_pos == (func.start_pos[0] + 1, 8)
assert func.start_pos == (cls.start_pos[0] + 1, 12)
def test_side_effect_completion():