Skip to content

Commit

Permalink
fix(test): aiohttp warning 'debug argument is deprecated'
Browse files Browse the repository at this point in the history
Signed-off-by: Ferenc Géczi <ferenc.geczi@ibm.com>
  • Loading branch information
Ferenc- committed Oct 2, 2023
1 parent 3436e1d commit 7140a93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/apps/aiohttp_app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def aiohttp_server():
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)

app = web.Application(debug=False)
app = web.Application()
app.add_routes([web.get('/', say_hello)])
app.add_routes([web.get('/204', two_hundred_four)])
app.add_routes([web.get('/401', four_hundred_one)])
Expand Down

0 comments on commit 7140a93

Please sign in to comment.