Skip to content

Commit

Permalink
tests: Fix aiohttp test for the latest version of the library
Browse files Browse the repository at this point in the history
  • Loading branch information
1st1 committed Oct 5, 2016
1 parent 71c5360 commit 4c0ee66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_aiohttp.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ async def handle_request(self, message, payload):
await response.write_eof()

f = self.loop.create_server(
lambda: HttpRequestHandler(keep_alive=False),
lambda: HttpRequestHandler(keepalive_timeout=1),
'0.0.0.0', '0')
srv = self.loop.run_until_complete(f)

Expand Down

0 comments on commit 4c0ee66

Please sign in to comment.