(cls, value, expect)
| 132 | ], |
| 133 | ) |
| 134 | def test_retry_after_mixin(cls, value, expect): |
| 135 | e = cls(retry_after=value) |
| 136 | h = dict(e.get_headers({})) |
| 137 | assert h["Retry-After"] == expect |
| 138 | |
| 139 | |
| 140 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected