diff options
Diffstat (limited to 'testenv/tests/plugins/auth/test_http.py')
-rw-r--r-- | testenv/tests/plugins/auth/test_http.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/testenv/tests/plugins/auth/test_http.py b/testenv/tests/plugins/auth/test_http.py index 7a13f9b7..a02df543 100644 --- a/testenv/tests/plugins/auth/test_http.py +++ b/testenv/tests/plugins/auth/test_http.py @@ -20,7 +20,6 @@ # ========================================================================== # -from typing import Dict from typing import AsyncGenerator import aiohttp.web @@ -68,7 +67,7 @@ async def _auth_server_port_fixture(aiohttp_server) -> AsyncGenerator[int, None] {"verify": False}, {"user": "server-admin", "passwd": "server-pass"}, ]) -async def test_ok(auth_server_port: int, kwargs: Dict) -> None: +async def test_ok(auth_server_port: int, kwargs: dict) -> None: url = "http://localhost:%d/%s" % ( auth_server_port, ("auth_plus_basic" if kwargs.get("user") else "auth"), |