style(test): split long t.Fatalf line to satisfy golines 120-char limit

This commit is contained in:
徐闻涵0668001344 2026-06-17 17:49:52 +08:00
parent 5b41f18c3d
commit 08192ddf1b

View file

@ -485,7 +485,11 @@ func TestGeminiProvider_BuildRequestBody_SetsBothThoughtSignatureFormats(t *test
t.Fatalf("request body = %s, expected camelCase thoughtSignature", jsonBody) t.Fatalf("request body = %s, expected camelCase thoughtSignature", jsonBody)
} }
if !strings.Contains(jsonBody, `"thought_signature":"sig-1"`) { if !strings.Contains(jsonBody, `"thought_signature":"sig-1"`) {
t.Fatalf("request body = %s, expected snake_case thought_signature for Gemini 3.5 Flash Agentic compatibility", jsonBody) t.Fatalf(
"request body = %s, expected snake_case thought_signature for "+
"Gemini 3.5 Flash Agentic compatibility",
jsonBody,
)
} }
} }