(request, _)
| 166 | def test_aync_call_with_retries_succeeds(self): |
| 167 | # Setup: Basic server, echos input. |
| 168 | def handler(request, _): |
| 169 | return make_response(request.nonce) |
| 170 | |
| 171 | server = TestGrpcServer(handler) |
| 172 | with server.run() as client: |
nothing calls this directly
no test coverage detected