From 6338c3facd531ed801027c395811e38f7b7d5e32 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 31 Oct 2020 22:46:55 +0200 Subject: [PATCH] Return Request. (#5184) (#5188) Co-authored-by: Sam Bull --- aiohttp/test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiohttp/test_utils.py b/aiohttp/test_utils.py index 1d491b8e779..7a9ca7ddf3e 100644 --- a/aiohttp/test_utils.py +++ b/aiohttp/test_utils.py @@ -585,7 +585,7 @@ def make_mocked_request( sslcontext: Optional[SSLContext] = None, client_max_size: int = 1024 ** 2, loop: Any = ..., -) -> Any: +) -> Request: """Creates mocked web.Request testing purposes. Useful in unit tests, when spinning full web server is overkill or