Skip to content

Commit 7dec84f

Browse files
committed
Making unit test do the intended test
1 parent b472d2b commit 7dec84f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_completion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ def test_path_completion_cwd():
359359
completions_empty = path_complete(text, line, begidx, endidx)
360360

361361
# Run path complete with path set to the CWD
362-
cwd = os.getcwd()
362+
cwd = os.getcwd() + os.path.sep
363363
line = 'shell ls {}'.format(cwd)
364364
endidx = len(line)
365365
begidx = endidx - len(text)

0 commit comments

Comments
 (0)