diff options
author | kotfu <jared@kotfu.net> | 2018-05-10 14:36:40 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-10 14:36:40 -0600 |
commit | b48d6b5eadfc6457acfcc578e21edcf9b86862cc (patch) | |
tree | 862840b5d797030374bc559ebdfed6465190eb08 /tests/test_cmd2.py | |
parent | 9d4d929709ffbcfcbd0974d8193c44d514f5a9b4 (diff) | |
parent | ceb3ef56e5c98e3af31de27a2ce43b64324c7e4e (diff) | |
download | cmd2-git-b48d6b5eadfc6457acfcc578e21edcf9b86862cc.tar.gz |
Merge pull request #398 from python-cmd2/remove_dynamic_redirectors
Remove cmd2.Cmd.redirector for #381
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 bc76505f..6e4a5a3e 100644 --- a/tests/test_cmd2.py +++ b/tests/test_cmd2.py @@ -1430,7 +1430,7 @@ def test_clipboard_failure(capsys): # Make sure we got the error output out, err = capsys.readouterr() assert out == '' - assert 'Cannot redirect to paste buffer; install ``xclip`` and re-run to enable' in err + assert "Cannot redirect to paste buffer; install 'pyperclip' and re-run to enable" in err class CmdResultApp(cmd2.Cmd): |