diff options
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 ebd388b1..c095bbba 100644 --- a/tests/test_cmd2.py +++ b/tests/test_cmd2.py @@ -1490,7 +1490,7 @@ def test_echo(capsys): # Check the output assert app.cmdqueue == [] assert app._current_script_dir is None - assert out.startswith('{}{}\n'.format(app.prompt, command) + 'history [arg]: lists past commands issued') + assert out.startswith('{}{}\n'.format(app.prompt, command) + 'usage: history [-h] [-s] [arg [arg ...]]') def test_pseudo_raw_input_tty_rawinput_true(): # use context managers so original functions get put back when we are done |