diff options
Diffstat (limited to 'routers/repo/webhook.go')
-rw-r--r-- | routers/repo/webhook.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/routers/repo/webhook.go b/routers/repo/webhook.go index c3150a02f6..754cf169b8 100644 --- a/routers/repo/webhook.go +++ b/routers/repo/webhook.go @@ -361,7 +361,7 @@ func TestWebhook(ctx *context.Context) { if commit == nil { ghost := models.NewGhostUser() commit = &git.Commit{ - ID: git.MustIDFromString(git.EMPTY_SHA), + ID: git.MustIDFromString(git.EmptySHA), Author: ghost.NewGitSig(), Committer: ghost.NewGitSig(), CommitMessage: "This is a fake commit", @@ -370,7 +370,7 @@ func TestWebhook(ctx *context.Context) { apiUser := ctx.User.APIFormat() p := &api.PushPayload{ - Ref: git.BRANCH_PREFIX + ctx.Repo.Repository.DefaultBranch, + Ref: git.BranchPrefix + ctx.Repo.Repository.DefaultBranch, Before: commit.ID.String(), After: commit.ID.String(), Commits: []*api.PayloadCommit{ |