Skip to content

Commit 4c0ee66

Browse files
committed
tests: Fix aiohttp test for the latest version of the library
1 parent 71c5360 commit 4c0ee66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_aiohttp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ async def handle_request(self, message, payload):
3030
await response.write_eof()
3131

3232
f = self.loop.create_server(
33-
lambda: HttpRequestHandler(keep_alive=False),
33+
lambda: HttpRequestHandler(keepalive_timeout=1),
3434
'0.0.0.0', '0')
3535
srv = self.loop.run_until_complete(f)
3636

0 commit comments

Comments
 (0)