Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorMikhail Mazurskiy <mmazurskiy@gitlab.com>2021-04-23 13:41:31 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2021-06-11 09:11:14 +0300
commit58e7bd4be15c69f9bac3ff5a407e53f9f08a1f90 (patch)
tree20e0c458b085640c89d9bc2d51563008db6237be /client
parente3cd1aa63e59f6d4c7c323c64dba3fd29fe2c3b8 (diff)
Embed Unimplemented* structs
Diffstat (limited to 'client')
-rw-r--r--client/dial_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/dial_test.go b/client/dial_test.go
index a931987ae..4399cdfb3 100644
--- a/client/dial_test.go
+++ b/client/dial_test.go
@@ -147,7 +147,7 @@ func TestDial(t *testing.T) {
}
type testSvc struct {
- proxytestdata.TestServiceServer
+ proxytestdata.UnimplementedTestServiceServer
PingMethod func(context.Context, *proxytestdata.PingRequest) (*proxytestdata.PingResponse, error)
PingStreamMethod func(stream proxytestdata.TestService_PingStreamServer) error
}