From e41a8c8af1b30fd0c48b3409899370c6d195b5f0 Mon Sep 17 00:00:00 2001 From: Muhammed Mukhthar CM Date: Wed, 14 Jan 2026 07:06:36 +0000 Subject: [PATCH] Lint: fix formatting in test --- .../pi-embedded-runner.sanitize-session-history.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/agents/pi-embedded-runner.sanitize-session-history.test.ts b/src/agents/pi-embedded-runner.sanitize-session-history.test.ts index 249d483d0..16a0aa3f4 100644 --- a/src/agents/pi-embedded-runner.sanitize-session-history.test.ts +++ b/src/agents/pi-embedded-runner.sanitize-session-history.test.ts @@ -75,7 +75,7 @@ describe('sanitizeSessionHistory', () => { it('should NOT downgrade history for non-Google models', async () => { vi.mocked(helpers.isGoogleModelApi).mockReturnValue(false); - const result = await sanitizeSessionHistory({ + const _result = await sanitizeSessionHistory({ messages: mockMessages, modelApi: 'anthropic-messages', provider: 'anthropic', @@ -90,7 +90,7 @@ describe('sanitizeSessionHistory', () => { it('should downgrade history if provider is undefined but model is Google', async () => { vi.mocked(helpers.isGoogleModelApi).mockReturnValue(true); - const result = await sanitizeSessionHistory({ + const _result = await sanitizeSessionHistory({ messages: mockMessages, modelApi: 'google-gemini', provider: undefined,