1
0
forked from VimPlug/jedi

Small restructuring.

This commit is contained in:
Dave Halter
2017-03-15 08:56:49 +01:00
parent 55c9fd3227
commit 375749c5c3
2 changed files with 5 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ def test_implicit_namespace_package():
# completion
completions = script_with_path('from pkg import ').completions()
names = [str(c.name) for c in completions] # str because of unicode
names = [c.name for c in completions]
compare = ['ns1_file', 'ns2_file']
# must at least contain these items, other items are not important
assert set(compare) == set(names)