summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--OpenSSL/test/test_ssl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSSL/test/test_ssl.py b/OpenSSL/test/test_ssl.py
index 3f1cb20..a6f0127 100644
--- a/OpenSSL/test/test_ssl.py
+++ b/OpenSSL/test/test_ssl.py
@@ -1913,7 +1913,7 @@ class ConnectionTests(TestCase, _LoopbackMixin):
# Fill up the client's send buffer so Connection won't be able to write
# anything.
msg = b"x" * 512
- for i in range(1024):
+ for i in range(2048):
try:
client_socket.send(msg)
except error as e: