Skip to content

Commit

Permalink
lint: ignore type checking on test
Browse files Browse the repository at this point in the history
  • Loading branch information
raptium committed Oct 4, 2024
1 parent f242cda commit 00824d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_testclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'"

0 comments on commit 00824d5

Please sign in to comment.