(self)
| 380 | self.do_test_default_behaviour(retry, response) |
| 381 | |
| 382 | def test_misc_response_exponential_backoff(self): |
| 383 | retry = github.GithubRetry(total=3, backoff_factor=10) |
| 384 | response = urllib3.response.HTTPResponse() |
| 385 | self.do_test_default_behaviour(retry, response) |
| 386 | |
| 387 | def test_error_in_get_content(self): |
| 388 | retry = github.GithubRetry(total=3) |
nothing calls this directly
no test coverage detected