(self)
| 361 | expected.increment("TEST", "URL", response) |
| 362 | |
| 363 | def test_403_with_retry_after(self): |
| 364 | retry = github.GithubRetry(total=3) |
| 365 | response = urllib3.response.HTTPResponse(status=403, headers={"Retry-After": "123"}) |
| 366 | self.do_test_default_behaviour(retry, response) |
| 367 | |
| 368 | def test_403_with_non_retryable_error(self): |
| 369 | retry = github.GithubRetry(total=3) |
nothing calls this directly
no test coverage detected