summaryrefslogtreecommitdiff
path: root/tests/test_ssl.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_ssl.py')
-rw-r--r--tests/test_ssl.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_ssl.py b/tests/test_ssl.py
index a3617c7..bfc5ca8 100644
--- a/tests/test_ssl.py
+++ b/tests/test_ssl.py
@@ -359,11 +359,10 @@ def interact_in_memory(client_conn, server_conn):
# Copy stuff from each side's send buffer to the other side's
# receive buffer.
- for (read, write) in [
+ for read, write in [
(client_conn, server_conn),
(server_conn, client_conn),
]:
-
# Give the side a chance to generate some more bytes, or succeed.
try:
data = read.recv(2**16)