(request, _)
| 76 | class CallWithRetriesTest(tb_test.TestCase): |
| 77 | def test_call_with_retries_succeeds(self): |
| 78 | def handler(request, _): |
| 79 | return make_response(request.nonce) |
| 80 | |
| 81 | server = TestGrpcServer(handler) |
| 82 | with server.run() as client: |
nothing calls this directly
no test coverage detected