From 0241b114066934d4e74f7842b962c7fd6a7c51f4 Mon Sep 17 00:00:00 2001 From: "kent.liu" Date: Thu, 19 Mar 2026 10:11:59 +0800 Subject: [PATCH] test(qq): fix lint formatting --- pkg/channels/qq/qq_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/channels/qq/qq_test.go b/pkg/channels/qq/qq_test.go index bf5d5c5db..a7068bfff 100644 --- a/pkg/channels/qq/qq_test.go +++ b/pkg/channels/qq/qq_test.go @@ -67,7 +67,7 @@ type transportCall struct { body any } -func (f *fakeQQAPI) Transport(ctx context.Context, method, url string, body interface{}) ([]byte, error) { +func (f *fakeQQAPI) Transport(ctx context.Context, method, url string, body any) ([]byte, error) { f.transportCalls = append(f.transportCalls, transportCall{ method: method, url: url,