1
0
forked from VimPlug/jedi

Use Script everywhere where cwd_at is used, otherwise Python 2.7 is annoying

This commit is contained in:
Dave Halter
2017-12-30 03:55:23 +01:00
parent 0ed9e1c249
commit a14f665b5a
6 changed files with 9 additions and 9 deletions

View File

@@ -79,7 +79,7 @@ class TestSetupReadline(unittest.TestCase):
assert len(set(self.completions(s)).symmetric_difference(goal)) < 20
@cwd_at('test')
def test_local_import(self):
def test_local_import(self, _):
s = 'import test_utils'
assert self.completions(s) == [s]