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/operations/testhelper_test.go')
-rw-r--r--internal/gitaly/service/operations/testhelper_test.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/internal/gitaly/service/operations/testhelper_test.go b/internal/gitaly/service/operations/testhelper_test.go
index a21c8b995..8d0a04074 100644
--- a/internal/gitaly/service/operations/testhelper_test.go
+++ b/internal/gitaly/service/operations/testhelper_test.go
@@ -41,7 +41,6 @@ func setupOperationsServiceWithCfg(
tb testing.TB, ctx context.Context, cfg config.Cfg, options ...testserver.GitalyServerOpt,
) (context.Context, config.Cfg, gitalypb.OperationServiceClient) {
testcfg.BuildGitalySSH(tb, cfg)
- testcfg.BuildGitalyGit2Go(tb, cfg)
testcfg.BuildGitalyHooks(tb, cfg)
serverSocketPath := runOperationServiceServer(tb, cfg, options...)
@@ -62,7 +61,6 @@ func setupOperationsService(
cfg := testcfg.Build(tb)
testcfg.BuildGitalySSH(tb, cfg)
- testcfg.BuildGitalyGit2Go(tb, cfg)
testcfg.BuildGitalyHooks(tb, cfg)
serverSocketPath := runOperationServiceServer(tb, cfg, options...)
@@ -86,7 +84,6 @@ func runOperationServiceServer(tb testing.TB, cfg config.Cfg, options ...testser
deps.GetTxManager(),
deps.GetLocator(),
deps.GetConnsPool(),
- deps.GetGit2goExecutor(),
deps.GetGitCmdFactory(),
deps.GetCatfileCache(),
deps.GetUpdaterWithHooks(),
@@ -108,7 +105,6 @@ func runOperationServiceServer(tb testing.TB, cfg config.Cfg, options ...testser
deps.GetGitCmdFactory(),
deps.GetCatfileCache(),
deps.GetConnsPool(),
- deps.GetGit2goExecutor(),
deps.GetHousekeepingManager(),
deps.GetBackupSink(),
deps.GetBackupLocator(),