summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Paul Calderone <exarkun@twistedmatrix.com>2014-02-18 16:40:34 -0500
committerJean-Paul Calderone <exarkun@twistedmatrix.com>2014-02-18 16:40:34 -0500
commit22c28b43b63f7d621686206537b2981185d21779 (patch)
tree1bea601561298bf955c1ed57d5b5d5a7e31137fb
parent7d7c9c2889c02757767009082e5b12498cc26344 (diff)
downloadpyopenssl-22c28b43b63f7d621686206537b2981185d21779.tar.gz
Make sure we still write a lot of bytes, too.
-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: