summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2023-02-13 13:01:47 +0100
committerGitHub <noreply@github.com>2023-02-13 07:01:47 -0500
commit669969ea7afa8a5f5f35a784a50acef9bea3952a (patch)
tree768460b6115d6179418554ca1d8ac5959a8a21d3 /tests
parent23d990e95812c45c9a0ee1fc9b501a90ae9425aa (diff)
downloadpyopenssl-669969ea7afa8a5f5f35a784a50acef9bea3952a.tar.gz
Fix CI (#1185)
* Reformat code using black 23.x * fix compat with tox 4
Diffstat (limited to 'tests')
-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)