From 6d84d4dc9c163ad5c34b0c9279617c84c3a0918c Mon Sep 17 00:00:00 2001 From: Jacob Richman Date: Thu, 9 Oct 2025 14:13:26 -0700 Subject: [PATCH] Fix prompt to make it a bit more deterministic (#10848) --- integration-tests/run_shell_command.test.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/integration-tests/run_shell_command.test.ts b/integration-tests/run_shell_command.test.ts index 5bc1880b9a..4f4984c604 100644 --- a/integration-tests/run_shell_command.test.ts +++ b/integration-tests/run_shell_command.test.ts @@ -197,13 +197,14 @@ describe('run_shell_command', () => { ).toBeTruthy(); }); - //TODO - https://github.com/google-gemini/gemini-cli/issues/10737 - it.skip('should combine multiple --allowed-tools flags', async () => { + it('should combine multiple --allowed-tools flags', async () => { const rig = new TestRig(); await rig.setup('should combine multiple --allowed-tools flags'); const { tool } = getLineCountCommand(); - const prompt = `use ${tool} and ls`; + const prompt = + `use both ${tool} and ls to count the number of lines in ` + + `files in this directory`; const result = await rig.run({ stdin: prompt,