summaryrefslogtreecommitdiff
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2020-02-13 13:39:53 -0500
committerKevin Van Brunt <kmvanbrunt@gmail.com>2020-02-13 13:39:53 -0500
commit41019de4b55f42d17149c29d380358dc38347948 (patch)
tree896f769ab1d919132b51ee0dbf7006cf07f87961 /tests/conftest.py
parentc3e3c1c595d65ec4c5fa2c9dac88ffa30cf4738e (diff)
downloadcmd2-git-41019de4b55f42d17149c29d380358dc38347948.tar.gz
Removed dash from 'tab complete' string
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index 7f77a207..9ee8da19 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -185,7 +185,7 @@ def complete_tester(text: str, line: str, begidx: int, endidx: int, app) -> Opti
def get_endidx():
return endidx
- # Run the readline tab-completion function with readline mocks in place
+ # Run the readline tab completion function with readline mocks in place
with mock.patch.object(readline, 'get_line_buffer', get_line):
with mock.patch.object(readline, 'get_begidx', get_begidx):
with mock.patch.object(readline, 'get_endidx', get_endidx):