diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-08-24 15:12:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-24 15:12:03 -0400 |
commit | f27de8fde23b8f27b5c5b5d07930c25c4d0ddc0a (patch) | |
tree | 2583fae4145d2b930f229738e92f6f480dad6d02 /tests/test_autocompletion.py | |
parent | ac33619741ef4cdbf4ddcda444ea0428d1348ef0 (diff) | |
parent | 42094e0d43c1a7373f4ed96d8d72dcf16f77a5f6 (diff) | |
download | cmd2-git-f27de8fde23b8f27b5c5b5d07930c25c4d0ddc0a.tar.gz |
Merge branch 'master' into tag_creation
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) |