diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-03-19 23:18:23 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-03-19 23:18:23 -0400 |
commit | e674ed6edccecb98c41a3f6babb941757660e48e (patch) | |
tree | 5455aaed7e121ce8bd74043f9da046e3d412d55d /tests/test_completion.py | |
parent | 892ba856bb835b1bb2734fc8ad30e4382e89a7b7 (diff) | |
download | cmd2-git-e674ed6edccecb98c41a3f6babb941757660e48e.tar.gz |
Fixed unit test
Diffstat (limited to 'tests/test_completion.py')
-rw-r--r-- | tests/test_completion.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_completion.py b/tests/test_completion.py index 49919792..40a328da 100644 --- a/tests/test_completion.py +++ b/tests/test_completion.py @@ -1009,7 +1009,7 @@ def test_cmd2_submenu_completion_after_submenu_match(sb_app): # Run the readline tab-completion function with readline mocks in place first_match = sb_app.complete(text, state) - assert first_match is not None and sb_app.completion_matches == ['asd'] + assert first_match is not None and sb_app.completion_matches == ['asd '] def test_cmd2_submenu_completion_after_submenu_nomatch(sb_app): |