summaryrefslogtreecommitdiff
path: root/tests/test_argparse.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2018-12-06 12:47:46 -0500
committerKevin Van Brunt <kmvanbrunt@gmail.com>2018-12-06 12:47:46 -0500
commit5f0c7d1cc8c69e01c0d3b047eef8dce860bd36cb (patch)
tree06c672fa5fed3e7b054368d3db5c65ccb0cfca96 /tests/test_argparse.py
parentea182bbea386288b1acfbc35c99243a457ff1036 (diff)
downloadcmd2-git-5f0c7d1cc8c69e01c0d3b047eef8dce860bd36cb.tar.gz
Removed ERROR: text from perror output
Diffstat (limited to 'tests/test_argparse.py')
-rw-r--r--tests/test_argparse.py2
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')