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/git/stats/http_push_test.go')
-rw-r--r--internal/git/stats/http_push_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/git/stats/http_push_test.go b/internal/git/stats/http_push_test.go
index e6a74b95a..6c9a2a390 100644
--- a/internal/git/stats/http_push_test.go
+++ b/internal/git/stats/http_push_test.go
@@ -150,16 +150,16 @@ func TestPerformHTTPPush(t *testing.T) {
{
desc: "failing delete",
preparePush: func(t *testing.T, cfg config.Cfg) ([]PushCommand, io.Reader) {
- gittest.WriteCommit(t, cfg, targetRepoPath, gittest.WithBranch("master"))
+ gittest.WriteCommit(t, cfg, targetRepoPath, gittest.WithBranch(git.DefaultBranch))
oldOID := git.ObjectID(strings.Repeat("1", gittest.DefaultObjectHash.EncodedLen()))
return []PushCommand{
- {OldOID: oldOID, NewOID: gittest.DefaultObjectHash.ZeroOID, Reference: "refs/heads/master"},
+ {OldOID: oldOID, NewOID: gittest.DefaultObjectHash.ZeroOID, Reference: git.DefaultRef},
}, nil
},
expectedErr: fmt.Errorf("parsing packfile response: %w",
- errors.New("reference update failed: \"ng refs/heads/master deletion of the current branch prohibited\\n\"")),
+ errors.New("reference update failed: \"ng "+string(git.DefaultRef)+" deletion of the current branch prohibited\\n\"")),
},
} {
t.Run(tc.desc, func(t *testing.T) {