Fix possible data race on tests (#30093)

(cherry picked from commit 0c8b828f5d5ac7eb8e251edfb1f2536ce1c30336)
This commit is contained in:
Lunny Xiao 2024-03-26 22:08:30 +08:00 committed by Earl Warren
parent 72a3a6fde7
commit ef800a7ff1
No known key found for this signature in database
GPG Key ID: 0579CB2928A78A00
1 changed files with 0 additions and 1 deletions

View File

@ -113,7 +113,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,