From 7ea1654706b9e25798d2a76d4d5c9a021ebd4754 Mon Sep 17 00:00:00 2001 From: Spencer Date: Mon, 13 Apr 2026 22:07:26 +0000 Subject: [PATCH] test: use rig.log instead of console.error in file stream tests --- integration-tests/run_shell_command_file_stream.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-tests/run_shell_command_file_stream.test.ts b/integration-tests/run_shell_command_file_stream.test.ts index b862f9bcdd..f90adfe9a7 100644 --- a/integration-tests/run_shell_command_file_stream.test.ts +++ b/integration-tests/run_shell_command_file_stream.test.ts @@ -89,7 +89,7 @@ describe('run_shell_command streaming to file regression', () => { return { p, size: 'error' }; } }); - console.error('Available files:', JSON.stringify(fileStats, null, 2)); + rig.log('Available files:', JSON.stringify(fileStats, null, 2)); } } @@ -178,7 +178,7 @@ describe('run_shell_command streaming to file regression', () => { return { p, size: 'error' }; } }); - console.error('Available files:', JSON.stringify(fileStats, null, 2)); + rig.log('Available files:', JSON.stringify(fileStats, null, 2)); } }