From 4276095d38266d24811c90704ec1f6e74c32b1fb Mon Sep 17 00:00:00 2001 From: TrueAlpha-spiral <199723968+TrueAlpha-spiral@users.noreply.github.com> Date: Tue, 17 Mar 2026 20:54:50 +0000 Subject: [PATCH] test: remove redundant FIX comment about map parameter type Removed an outdated `// FIX: Provide explicit type for the 'call' parameter in the map function.` comment from `packages/core/src/services/shellExecutionService.test.ts`. The type `(call: [ShellOutputEvent]) => ...` was already implemented immediately following the comment, making it redundant. Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com> --- packages/core/src/services/shellExecutionService.test.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/core/src/services/shellExecutionService.test.ts b/packages/core/src/services/shellExecutionService.test.ts index 2fe51a5e984..8eea9ab9058 100644 --- a/packages/core/src/services/shellExecutionService.test.ts +++ b/packages/core/src/services/shellExecutionService.test.ts @@ -328,7 +328,6 @@ describe('ShellExecutionService', () => { cp.emit('exit', 0, null); }); - // FIX: Provide explicit type for the 'call' parameter in the map function. const eventTypes = onOutputEventMock.mock.calls.map( (call: [ShellOutputEvent]) => call[0].type, );