diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_config.py | 1 | ||||
-rw-r--r-- | tests/test_proxy.py | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_config.py b/tests/test_config.py index 7d7a169f..57dda537 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -3,7 +3,6 @@ from os.path import expanduser -import pytest from pytest import raises, mark from paramiko import SSHConfig, SSHConfigDict diff --git a/tests/test_proxy.py b/tests/test_proxy.py index ef4a2a36..9d707a4a 100644 --- a/tests/test_proxy.py +++ b/tests/test_proxy.py @@ -78,7 +78,7 @@ class TestProxyCommand(object): os_read.side_effect = socket.timeout proxy = ProxyCommand("hi") with raises(socket.timeout): - data = proxy.recv(5) + proxy.recv(5) assert os_read.call_args[0] == (fileno, 5) @patch("paramiko.proxy.subprocess.Popen") |