From 22c28b43b63f7d621686206537b2981185d21779 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Tue, 18 Feb 2014 16:40:34 -0500 Subject: Make sure we still write a lot of bytes, too. --- OpenSSL/test/test_ssl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit v1.2.1