diff options
author | kotfu <kotfu@kotfu.net> | 2019-09-07 16:11:44 -0600 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2019-09-07 16:11:44 -0600 |
commit | 74857c34c00323c881f1669ae95788dcff6a48fa (patch) | |
tree | 359649000c2e55ea913250244db59da4b1e0cfd7 /tests/test_cmd2.py | |
parent | b9d21a222f02735be3c36be0cab8e83770619373 (diff) | |
parent | 693ec59719edc4384739392a0daea73c922b91c3 (diff) | |
download | cmd2-git-74857c34c00323c881f1669ae95788dcff6a48fa.tar.gz |
Merge branch 'master' into doc_additions
Diffstat (limited to 'tests/test_cmd2.py')
-rwxr-xr-x | 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 313b4dee..fc8a1dae 100755 --- a/tests/test_cmd2.py +++ b/tests/test_cmd2.py @@ -1332,7 +1332,7 @@ def test_clipboard_failure(base_app, capsys): # Make sure we got the error output out, err = capsys.readouterr() assert out == '' - assert "Cannot redirect to paste buffer; install 'pyperclip' and re-run to enable" in err + assert 'Cannot redirect to paste buffer;' in err and 'pyperclip' in err class CommandResultApp(cmd2.Cmd): |