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.
This commit is contained in:
Johannes Millan 2026-01-21 11:52:08 +01:00
parent d9cdbf43f2
commit b8d05a2aa7

View file

@ -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: [],
}),
);
});