Skip to content

Commit

Permalink
[Fix] shrinks window before connecting (#905)
Browse files Browse the repository at this point in the history
  • Loading branch information
4383 committed Feb 1, 2024
1 parent 3f8c9e4 commit 799dabc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/greenio_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,8 +417,8 @@ def server():

server_evt = eventlet.spawn(server)
client = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
client.connect(('127.0.0.1', listener.getsockname()[1]))
bufsized(client)
client.connect(('127.0.0.1', listener.getsockname()[1]))
large_evt = eventlet.spawn(read_large, client)
eventlet.sleep(0)
client.sendall(b'hello world')
Expand Down

0 comments on commit 799dabc

Please sign in to comment.