Skip to content

Commit

Permalink
Make sure we still write a lot of bytes, too.
Browse files Browse the repository at this point in the history
  • Loading branch information
exarkun committed Feb 18, 2014
1 parent 7d7c9c2 commit 22c28b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenSSL/test/test_ssl.py
Original file line number Diff line number Diff line change
Expand Up @@ -1913,7 +1913,7 @@ def test_wantWriteError(self):
# 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:
Expand Down

0 comments on commit 22c28b4

Please sign in to comment.