summaryrefslogtreecommitdiffhomepage
path: root/tests/test_proxy.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_proxy.py')
-rw-r--r--tests/test_proxy.py2
1 files changed, 1 insertions, 1 deletions
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")