diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-09-21 09:24:39 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-09-21 09:24:39 -0400 |
commit | 8aab13018dedff0f669715c6e4fee66a9697e930 (patch) | |
tree | 0adbadec60523f4e38da307305f180026646e46e /tests/test_cmd2.py | |
parent | 20d57ff875f9f47c3c471ad1de2c15d587b1bf0c (diff) | |
download | cmd2-git-8aab13018dedff0f669715c6e4fee66a9697e930.tar.gz |
Fixed unit test
Diffstat (limited to 'tests/test_cmd2.py')
-rw-r--r-- | tests/test_cmd2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py index 06379184..1e7e2c3f 100644 --- a/tests/test_cmd2.py +++ b/tests/test_cmd2.py @@ -72,7 +72,7 @@ def test_base_invalid_option(base_app, capsys): out = normalize(out) err = normalize(err) assert 'Error: unrecognized arguments: -z' in err[0] - assert out[0] == 'Usage: set param{0..1} [value] [-h] [-a] [-l]' + assert out[0] == 'Usage: set [param] [value] [-h] [-a] [-l]' def test_base_shortcuts(base_app): out = run_cmd(base_app, 'shortcuts') |