Skip to content

Commit 7140a93

Browse files
committed
fix(test): aiohttp warning 'debug argument is deprecated'
Signed-off-by: Ferenc Géczi <[email protected]>
1 parent 3436e1d commit 7140a93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/apps/aiohttp_app/app.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def aiohttp_server():
3838
loop = asyncio.new_event_loop()
3939
asyncio.set_event_loop(loop)
4040

41-
app = web.Application(debug=False)
41+
app = web.Application()
4242
app.add_routes([web.get('/', say_hello)])
4343
app.add_routes([web.get('/204', two_hundred_four)])
4444
app.add_routes([web.get('/401', four_hundred_one)])

0 commit comments

Comments
 (0)