(self)
| 40 | |
| 41 | class TestClientErrorHandler: |
| 42 | def setup_method(self): |
| 43 | self.session = FakeSession() |
| 44 | self.handler = ClientErrorHandler(self.session) |
| 45 | |
| 46 | def test_displays_structured_error_with_additional_members(self): |
| 47 | error_response = { |
nothing calls this directly
no test coverage detected