(self)
| 375 | ) |
| 376 | |
| 377 | def test_misc_response(self): |
| 378 | retry = github.GithubRetry(total=3) |
| 379 | response = urllib3.response.HTTPResponse() |
| 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) |
nothing calls this directly
no test coverage detected