(self)
| 338 | assert retry.history == test_history3 |
| 339 | |
| 340 | def test_retry_method_not_allowed(self) -> None: |
| 341 | error = ReadTimeoutError(DUMMY_POOL, "/", "read timed out") |
| 342 | retry = Retry() |
| 343 | with pytest.raises(ReadTimeoutError): |
| 344 | retry.increment(method="POST", error=error) |
| 345 | |
| 346 | def test_retry_default_remove_headers_on_redirect(self) -> None: |
| 347 | retry = Retry() |
nothing calls this directly
no test coverage detected