From f0e15250b9e322cc7731ba026d12387c2b549a42 Mon Sep 17 00:00:00 2001 From: zeripath Date: Mon, 1 Mar 2021 21:08:10 +0000 Subject: Migrate to use jsoniter instead of encoding/json (#14841) * Migrate to use jsoniter * fix tests * update gitea.com/go-chi/binding Signed-off-by: Andrew Thornton Co-authored-by: 6543 <6543@obermui.de> --- models/webhook_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'models/webhook_test.go') diff --git a/models/webhook_test.go b/models/webhook_test.go index 1baf6ef44b..31cc29d0a4 100644 --- a/models/webhook_test.go +++ b/models/webhook_test.go @@ -6,12 +6,12 @@ package models import ( "context" - "encoding/json" "testing" "time" api "code.gitea.io/gitea/modules/structs" + jsoniter "github.com/json-iterator/go" "github.com/stretchr/testify/assert" ) @@ -58,6 +58,7 @@ func TestWebhook_UpdateEvent(t *testing.T) { assert.NoError(t, webhook.UpdateEvent()) assert.NotEmpty(t, webhook.Events) actualHookEvent := &HookEvent{} + json := jsoniter.ConfigCompatibleWithStandardLibrary assert.NoError(t, json.Unmarshal([]byte(webhook.Events), actualHookEvent)) assert.Equal(t, *hookEvent, *actualHookEvent) } -- cgit v1.2.3