diff options
author | kotfu <kotfu@kotfu.net> | 2018-05-10 11:11:40 -0600 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2018-05-10 11:11:40 -0600 |
commit | ce5092fd9c2e23baa0952aac665e7c26ed85a03a (patch) | |
tree | 3fa946fff879de07fd9743a24770c298a2ea6a68 /tests/test_cmd2.py | |
parent | 9d4d929709ffbcfcbd0974d8193c44d514f5a9b4 (diff) | |
download | cmd2-git-ce5092fd9c2e23baa0952aac665e7c26ed85a03a.tar.gz |
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): |