From ddb65433cb1300d0a3e5f2f6a816517d61a99be3 Mon Sep 17 00:00:00 2001 From: Alix-007 <267018309+Alix-007@users.noreply.github.com> Date: Thu, 26 Mar 2026 21:28:44 +0800 Subject: [PATCH] style(openai_compat): wrap longcat test call for golines --- pkg/providers/openai_compat/provider_test.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkg/providers/openai_compat/provider_test.go b/pkg/providers/openai_compat/provider_test.go index 6b90b093b..f9c189c10 100644 --- a/pkg/providers/openai_compat/provider_test.go +++ b/pkg/providers/openai_compat/provider_test.go @@ -184,7 +184,13 @@ func TestProviderChat_ParsesLongCatMarkupToolCalls(t *testing.T) { }), } - out, err := p.Chat(t.Context(), []Message{{Role: "user", Content: "hi"}}, nil, "longcat/LongCat-Flash-Thinking", nil) + out, err := p.Chat( + t.Context(), + []Message{{Role: "user", Content: "hi"}}, + nil, + "longcat/LongCat-Flash-Thinking", + nil, + ) if err != nil { t.Fatalf("Chat() error = %v", err) }