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/branches_test.go')
-rw-r--r--internal/gitaly/service/operations/branches_test.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/internal/gitaly/service/operations/branches_test.go b/internal/gitaly/service/operations/branches_test.go
index c29f2a4c5..f7e279d5e 100644
--- a/internal/gitaly/service/operations/branches_test.go
+++ b/internal/gitaly/service/operations/branches_test.go
@@ -48,9 +48,8 @@ func testSuccessfulCreateBranchRequest(t *testing.T, ctx context.Context) {
client, conn := newOperationClient(t, serverSocketPath)
defer conn.Close()
- locator := config.NewLocator(config.Config)
startPoint := "c7fbe50c7c7419d9701eebe64b1fdacc3df5b9dd"
- startPointCommit, err := log.GetCommit(ctx, locator, testRepo, startPoint)
+ startPointCommit, err := log.GetCommit(ctx, testRepo, startPoint)
require.NoError(t, err)
testCases := []struct {
@@ -321,8 +320,7 @@ func testSuccessfulCreateBranchRequestWithStartPointRefPrefix(t *testing.T, ctx
//
//targetCommitOK, err := log.GetCommit(ctx, testRepo, testCase.startPointCommit)
// END TODO
- locator := config.NewLocator(config.Config)
- targetCommitOK, err := log.GetCommit(ctx, locator, testRepo, "1e292f8fedd741b75372e19097c76d327140c312")
+ targetCommitOK, err := log.GetCommit(ctx, testRepo, "1e292f8fedd741b75372e19097c76d327140c312")
require.NoError(t, err)
response, err := client.UserCreateBranch(ctx, request)