fix: format long line in codex_provider_test.go to satisfy golines

This commit is contained in:
miruchigawa
2026-05-31 05:00:22 +07:00
parent 2ff8b01cc6
commit 93391223ea
+7 -1
View File
@@ -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)
}