From 93391223eaf84c982791684b4eb774edc2eba86c Mon Sep 17 00:00:00 2001 From: miruchigawa <99255321+miruchigawa@users.noreply.github.com> Date: Sun, 31 May 2026 05:00:22 +0700 Subject: [PATCH] fix: format long line in codex_provider_test.go to satisfy golines --- pkg/providers/oauth/codex_provider_test.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkg/providers/oauth/codex_provider_test.go b/pkg/providers/oauth/codex_provider_test.go index 7ff2999ce..8deeb8d2a 100644 --- a/pkg/providers/oauth/codex_provider_test.go +++ b/pkg/providers/oauth/codex_provider_test.go @@ -404,7 +404,13 @@ func TestCodexProvider_ChatRoundTrip_OutputTextDeltaFallback(t *testing.T) { provider := NewCodexProvider("test-token", "acc-123") provider.client = createOpenAITestClient(server.URL, "test-token", "acc-123") - resp, err := provider.Chat(t.Context(), []Message{{Role: "user", Content: "Hello"}}, nil, "gpt-4o", map[string]any{}) + resp, err := provider.Chat( + t.Context(), + []Message{{Role: "user", Content: "Hello"}}, + nil, + "gpt-4o", + map[string]any{}, + ) if err != nil { t.Fatalf("Chat() error: %v", err) }