summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/test_ssl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_ssl.py b/tests/test_ssl.py
index 0831904..fbf0760 100644
--- a/tests/test_ssl.py
+++ b/tests/test_ssl.py
@@ -2632,7 +2632,7 @@ class TestConnection(object):
# always happen on all platforms (FreeBSD and OS X particular) for the
# very last bit of available buffer space.
msg = b"x"
- for i in range(1024 * 1024 * 4):
+ for i in range(1024 * 1024 * 64):
try:
client_socket.send(msg)
except error as e: