test(qq): fix lint formatting

This commit is contained in:
kent.liu 2026-03-19 10:11:59 +08:00
parent 7fa37f23df
commit 0241b11406

View file

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