From 426d36146a8105f2a5db4a572a0dfb06fa556900 Mon Sep 17 00:00:00 2001 From: shrutip90 Date: Fri, 17 Oct 2025 13:18:18 -0700 Subject: [PATCH] =?UTF-8?q?fix:=20Unset=20selected=20auth=20type=20in=20in?= =?UTF-8?q?teg=20test=20so=20that=20the=20local=20setting=E2=80=A6=20(#113?= =?UTF-8?q?22)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- integration-tests/json-output.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/integration-tests/json-output.test.ts b/integration-tests/json-output.test.ts index 3b4be71a49..cd92bd9744 100644 --- a/integration-tests/json-output.test.ts +++ b/integration-tests/json-output.test.ts @@ -39,7 +39,9 @@ describe('JSON output', () => { process.env['GOOGLE_GENAI_USE_GCA'] = 'true'; await rig.setup('json-output-auth-mismatch', { settings: { - security: { auth: { enforcedType: 'gemini-api-key' } }, + security: { + auth: { enforcedType: 'gemini-api-key', selectedType: '' }, + }, }, });