()
| 426 | |
| 427 | |
| 428 | def test_timeout_deprecation() -> None: |
| 429 | with pytest.warns( |
| 430 | StarletteDeprecationWarning, match="You should not use the 'timeout' argument with the TestClient." |
| 431 | ): |
| 432 | client = TestClient(mock_service) |
| 433 | client.get("/", timeout=1) |
nothing calls this directly
no test coverage detected