diff options
Diffstat (limited to 'tests')
-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. |