diff options
author | David Lord <davidism@gmail.com> | 2022-04-28 11:05:06 -0700 |
---|---|---|
committer | David Lord <davidism@gmail.com> | 2022-04-28 11:05:06 -0700 |
commit | 501dec6e4324f289eee598a77865a6de95b62727 (patch) | |
tree | c62c4007aa83f9623f9cdc99be2097a5aef3cd4a /tests/test_basic.py | |
parent | 0aec1168ac591e159baf6f61026d6ae322c53aaf (diff) | |
download | click-parser-rewrite.tar.gz |
workparser-rewrite
Diffstat (limited to 'tests/test_basic.py')
-rw-r--r-- | tests/test_basic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_basic.py b/tests/test_basic.py index d68b962..1a1adc3 100644 --- a/tests/test_basic.py +++ b/tests/test_basic.py @@ -108,7 +108,7 @@ def test_group_from_list(runner): [ ([], "S:[no value]"), (["--s=42"], "S:[42]"), - (["--s"], "Error: Option '--s' requires an argument."), + (["--s"], "Error: Option '--s' requires a value."), (["--s="], "S:[]"), (["--s=\N{SNOWMAN}"], "S:[\N{SNOWMAN}]"), ], |