diff --git a/tests/unit/ext/test_aiohttp_py35.py b/tests/unit/ext/test_aiohttp_py35.py index e34cefa9..6f7b0205 100644 --- a/tests/unit/ext/test_aiohttp_py35.py +++ b/tests/unit/ext/test_aiohttp_py35.py @@ -58,7 +58,7 @@ class ApplicationTests(AioHTTPTestCase): Override the get_app method to return your application. """ container = ApplicationContainer() - app: web.Application = container.app() + app = container.app() app.container = container app.add_routes([ web.get('/', container.index_view.as_view()),