From 00824d5b3033ee534665f0f850f3fdb9d19cf296 Mon Sep 17 00:00:00 2001 From: Hao Guan Date: Fri, 4 Oct 2024 10:08:01 +0800 Subject: [PATCH] lint: ignore type checking on test --- tests/test_testclient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_testclient.py b/tests/test_testclient.py index a4b7b602f..179b0affa 100644 --- a/tests/test_testclient.py +++ b/tests/test_testclient.py @@ -403,7 +403,7 @@ async def asgi(receive: Receive, send: Send) -> None: return asgi - client = test_client_factory(app) + client = test_client_factory(app) # type: ignore with client.websocket_connect("/hello%20world?foo=bar") as websocket: data = websocket.receive_text() assert data == "raw_path: b'/hello%20world'"