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
diff options
context:
space:
mode:
Diffstat (limited to 'internal/gitaly/service/namespace/testhelper_test.go')
-rw-r--r--internal/gitaly/service/namespace/testhelper_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/gitaly/service/namespace/testhelper_test.go b/internal/gitaly/service/namespace/testhelper_test.go
index 2d8bd9bb4..79b1a5a8d 100644
--- a/internal/gitaly/service/namespace/testhelper_test.go
+++ b/internal/gitaly/service/namespace/testhelper_test.go
@@ -23,7 +23,7 @@ func setupNamespaceService(tb testing.TB, opts ...testserver.GitalyServerOpt) (c
cfg := cfgBuilder.Build(tb)
addr := testserver.RunGitalyServer(tb, cfg, func(srv *grpc.Server, deps *service.Dependencies) {
- gitalypb.RegisterNamespaceServiceServer(srv, NewServer(deps.GetLocator()))
+ gitalypb.RegisterNamespaceServiceServer(srv, NewServer(deps))
}, opts...)
conn, err := grpc.Dial(addr, grpc.WithTransportCredentials(insecure.NewCredentials()))