mirror of
https://github.com/sipeed/picoclaw.git
synced 2026-07-28 01:27:58 +00:00
style(test): split long t.Fatalf line to satisfy golines 120-char limit
This commit is contained in:
@@ -485,7 +485,11 @@ func TestGeminiProvider_BuildRequestBody_SetsBothThoughtSignatureFormats(t *test
|
||||
t.Fatalf("request body = %s, expected camelCase thoughtSignature", jsonBody)
|
||||
}
|
||||
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,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user