1
0
forked from VimPlug/jedi

Add deprecations warnings, to deprecated functions in the main API

This commit is contained in:
Dave Halter
2020-03-21 02:30:07 +01:00
parent d6d9286242
commit 5f6a25fb58
2 changed files with 26 additions and 6 deletions

View File

@@ -96,7 +96,7 @@ def test_complete_expanduser(Script):
expected_name = item.name
if item.is_dir():
expected_name += os.path.sep
assert expected_name in [c.name for c in s.completions(column=len(line)-1)]
assert expected_name in [c.name for c in s.complete(column=len(line)-1)]
def test_fake_subnodes(Script):