diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-09-30 22:46:55 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-09-30 22:46:55 -0400 |
commit | 2d14ce9fba552134b6df2ccb8e17958b44ee76de (patch) | |
tree | 25b1e400c269722580e00e8af930e37904f9258c /tests/test_argparse_completer.py | |
parent | a345044a381c714d83e155d005202ea06ea13af6 (diff) | |
download | cmd2-git-2d14ce9fba552134b6df2ccb8e17958b44ee76de.tar.gz |
Added comment
Diffstat (limited to 'tests/test_argparse_completer.py')
-rw-r--r-- | tests/test_argparse_completer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_argparse_completer.py b/tests/test_argparse_completer.py index 1094b4ab..e54e49c2 100644 --- a/tests/test_argparse_completer.py +++ b/tests/test_argparse_completer.py @@ -813,7 +813,7 @@ def test_arg_tokens(ac_app, command_and_args, completions): # Group finished by --flag. Optional positional will be skipped and last_arg will show its hint. ('mutex --flag flag_val', '', 'the last arg', None), - # Group finished by --flag. Other flag won't complete. + # Group finished by --flag. Other flag name won't complete. ('mutex --flag flag_val', '--oth', '', None), # Group finished by --flag. Error will display trying to complete other flag's value. |