diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-09-01 11:50:37 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-09-01 11:50:37 -0400 |
commit | 610aad33eb8fe1772480e98af8b255bd56dfe78c (patch) | |
tree | b9dfb60fa0a60b438c8b8e31679f6df768f24665 /tests/test_autocompletion.py | |
parent | 20f4a52399c5c1ee87ae57b9f082113663b20060 (diff) | |
parent | 93d40a4a486ae6121858f9fb7369ed272a768672 (diff) | |
download | cmd2-git-610aad33eb8fe1772480e98af8b255bd56dfe78c.tar.gz |
Merge branch 'quoted_args' of github.com:python-cmd2/cmd2 into quoted_args
Diffstat (limited to 'tests/test_autocompletion.py')
-rw-r--r-- | tests/test_autocompletion.py | 6 |
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) |