1
0
forked from VimPlug/jedi

Fix issues with a recent refactoring

This commit is contained in:
Dave Halter
2018-01-20 21:21:58 +01:00
parent 27a3be3b42
commit 20d64cf2b3
6 changed files with 18 additions and 7 deletions

View File

@@ -69,7 +69,7 @@ def test_complete_at_zero():
def test_wrong_encoding(cwd_tmpdir):
x = cwd_tmpdir.join('x.py')
# Use both latin-1 and utf-8 (a really broken file).
x.write_binary(u'foobar = 1\nä'.encode('latin-1') + 'ä'.encode())
x.write_binary(u'foobar = 1\nä'.encode('latin-1') + u'ä'.encode('utf-8'))
c, = Script('import x; x.foo', sys_path=['.']).completions()
assert c.name == 'foobar'

View File

@@ -11,7 +11,7 @@ from jedi import Script
def test_paths_from_assignment():
def paths(src):
script = Script(src, path='/foo/bar.py')
expr_stmt = script._get_module_node().children[0]
expr_stmt = script._module_node.children[0]
return set(sys_path._paths_from_assignment(script._get_module(), expr_stmt))
assert paths('sys.path[0:0] = ["a"]') == {'/foo/a'}