From 5f0c7d1cc8c69e01c0d3b047eef8dce860bd36cb Mon Sep 17 00:00:00 2001 From: Kevin Van Brunt Date: Thu, 6 Dec 2018 12:47:46 -0500 Subject: Removed ERROR: text from perror output --- tests/test_argparse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_argparse.py') 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') -- cgit v1.2.1