From 8205575e6ef0dc99d0daf25ae5933c79b213dde0 Mon Sep 17 00:00:00 2001 From: Sehoon Shon Date: Mon, 30 Mar 2026 17:23:38 -0400 Subject: [PATCH] chore(test-utils): switch integration tests to use gemini-3.1 model --- packages/test-utils/src/test-rig.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/test-utils/src/test-rig.ts b/packages/test-utils/src/test-rig.ts index ae2e9cc0ef..83b548c6fb 100644 --- a/packages/test-utils/src/test-rig.ts +++ b/packages/test-utils/src/test-rig.ts @@ -11,7 +11,7 @@ import { join, dirname } from 'node:path'; import { fileURLToPath } from 'node:url'; import { env } from 'node:process'; import { setTimeout as sleep } from 'node:timers/promises'; -import { DEFAULT_GEMINI_MODEL, GEMINI_DIR } from '@google/gemini-cli-core'; +import { PREVIEW_GEMINI_3_1_MODEL, GEMINI_DIR } from '@google/gemini-cli-core'; export { GEMINI_DIR }; import * as pty from '@lydell/node-pty'; import stripAnsi from 'strip-ansi'; @@ -457,7 +457,7 @@ export class TestRig { ...(env['GEMINI_TEST_TYPE'] === 'integration' ? { model: { - name: DEFAULT_GEMINI_MODEL, + name: PREVIEW_GEMINI_3_1_MODEL, }, } : {}),