(self)
| 292 | assert conn1_close.called is True |
| 293 | |
| 294 | def test_exception_str(self) -> None: |
| 295 | assert ( |
| 296 | str(EmptyPoolError(HTTPConnectionPool(host="localhost"), "Test.")) |
| 297 | == "HTTPConnectionPool(host='localhost', port=None): Test." |
| 298 | ) |
| 299 | |
| 300 | def test_retry_exception_str(self) -> None: |
| 301 | assert ( |
nothing calls this directly
no test coverage detected