style(test): split long t.Fatalf line to satisfy golines 120-char limit
This commit is contained in:
parent
5b41f18c3d
commit
08192ddf1b
1 changed files with 5 additions and 1 deletions
|
|
@ -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,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue