Skip to content

Commit c2ce593

Browse files
ci: apply automated fixes
1 parent 16609f7 commit c2ce593

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

packages/typescript/ai-gemini/tests/gemini-adapter.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,9 @@ describe('GeminiAdapter through AI', () => {
398398
// for the tool result) and the follow-up user text
399399
const lastParts = payload.contents[2].parts
400400
const hasFunctionResponse = lastParts.some((p: any) => p.functionResponse)
401-
const hasFollowUp = lastParts.some((p: any) => p.text === 'What about Paris?')
401+
const hasFollowUp = lastParts.some(
402+
(p: any) => p.text === 'What about Paris?',
403+
)
402404
const hasToolResultText = lastParts.some(
403405
(p: any) => p.text === '{"temp":72}',
404406
)

0 commit comments

Comments
 (0)