Fix possible data race on tests (#30093) (#30108)

backport #30093

(cherry picked from commit 09a5067c0c496d514adac7b82a44ae2061a171db)
This commit is contained in:
Lunny Xiao 2024-03-26 23:49:48 +08:00 committed by Earl Warren
parent 706ff7aa9f
commit 65d34f9313
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

View file

@ -105,7 +105,6 @@ func TestWebhookDeliverAuthorizationHeader(t *testing.T) {
err := hook.SetHeaderAuthorization("Bearer s3cr3t-t0ken")
assert.NoError(t, err)
assert.NoError(t, webhook_model.CreateWebhook(db.DefaultContext, hook))
db.GetEngine(db.DefaultContext).NoAutoTime().DB().Logger.ShowSQL(true)
hookTask := &webhook_model.HookTask{HookID: hook.ID, EventType: webhook_module.HookEventPush, Payloader: &api.PushPayload{}}