From b8d05a2aa751a2236a341229d9f4ca82bf116dc2 Mon Sep 17 00:00:00 2001 From: Johannes Millan Date: Wed, 21 Jan 2026 11:52:08 +0100 Subject: [PATCH] fix(tests): remove non-existent taskIdsToUnlink from test expectations The deleteTaskRepeatCfg action does not have a taskIdsToUnlink property. Removed this property from test expectations to match the actual action definition. This was causing TypeScript compilation errors in the test file. --- .../features/task-repeat-cfg/task-repeat-cfg.service.spec.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/features/task-repeat-cfg/task-repeat-cfg.service.spec.ts b/src/app/features/task-repeat-cfg/task-repeat-cfg.service.spec.ts index be1dc30cc..8cee90fd6 100644 --- a/src/app/features/task-repeat-cfg/task-repeat-cfg.service.spec.ts +++ b/src/app/features/task-repeat-cfg/task-repeat-cfg.service.spec.ts @@ -194,7 +194,6 @@ describe('TaskRepeatCfgService', () => { jasmine.objectContaining({ type: TaskSharedActions.deleteTaskRepeatCfg.type, taskRepeatCfgId: id, - taskIdsToUnlink: [mockTask.id], }), ); }); @@ -300,7 +299,6 @@ describe('TaskRepeatCfgService', () => { jasmine.objectContaining({ type: TaskSharedActions.deleteTaskRepeatCfg.type, taskRepeatCfgId: 'cfg-123', - taskIdsToUnlink: [], }), ); });