diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-12-06 12:47:46 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-12-06 12:47:46 -0500 |
commit | 5f0c7d1cc8c69e01c0d3b047eef8dce860bd36cb (patch) | |
tree | 06c672fa5fed3e7b054368d3db5c65ccb0cfca96 /tests/test_argparse.py | |
parent | ea182bbea386288b1acfbc35c99243a457ff1036 (diff) | |
download | cmd2-git-5f0c7d1cc8c69e01c0d3b047eef8dce860bd36cb.tar.gz |
Removed ERROR: text from perror output
Diffstat (limited to 'tests/test_argparse.py')
-rw-r--r-- | tests/test_argparse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_argparse.py b/tests/test_argparse.py index 29f0d232..7db35c71 100644 --- a/tests/test_argparse.py +++ b/tests/test_argparse.py @@ -123,7 +123,7 @@ def argparse_app(): def test_invalid_syntax(argparse_app, capsys): run_cmd(argparse_app, 'speak "') out, err = capsys.readouterr() - assert err == "ERROR: Invalid syntax: No closing quotation\n" + assert err == "Invalid syntax: No closing quotation\n" def test_argparse_basic_command(argparse_app): out = run_cmd(argparse_app, 'say hello') |