summaryrefslogtreecommitdiff
path: root/tests/test_autocompletion.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-09-04 22:50:09 -0700
committerTodd Leonhardt <todd.leonhardt@gmail.com>2018-09-04 22:50:09 -0700
commit59969dd42694d4b1d11cd1be11adf2d6db41df55 (patch)
tree6f09b671b0f8af98684ca008a0ff8aeceeeb9ea1 /tests/test_autocompletion.py
parent1daf5d2cb63145408520f39c799425a82b2ec948 (diff)
parent1641f54458686eace59bb195fda0e78fb2ecb83f (diff)
downloadcmd2-git-59969dd42694d4b1d11cd1be11adf2d6db41df55.tar.gz
Merged master in and resolved conflicts
@kotfu - I hope this doesn't screw you up, but I wanted to minimize some of the merge pain that will likely be coming up soon
Diffstat (limited to 'tests/test_autocompletion.py')
-rw-r--r--tests/test_autocompletion.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_autocompletion.py b/tests/test_autocompletion.py
index e0a71831..8aa26e0e 100644
--- a/tests/test_autocompletion.py
+++ b/tests/test_autocompletion.py
@@ -19,8 +19,8 @@ def cmd2_app():
SUGGEST_HELP = '''Usage: suggest -t {movie, show} [-h] [-d DURATION{1..2}]
-Suggest command demonstrates argparse customizations See hybrid_suggest and
-orig_suggest to compare the help output.
+Suggest command demonstrates argparse customizations.
+See hybrid_suggest and orig_suggest to compare the help output.
required arguments:
-t, --type {movie, show}
@@ -59,7 +59,7 @@ def test_help_required_group(cmd2_app, capsys):
assert out1 == out2
assert out1[0].startswith('Usage: suggest')
assert out1[1] == ''
- assert out1[2].startswith('Suggest command demonstrates argparse customizations ')
+ assert out1[2].startswith('Suggest command demonstrates argparse customizations.')
assert out1 == normalize(SUGGEST_HELP)