fix(spec): refs #6398 fix spec

This commit is contained in:
Pablo Natek 2024-01-10 13:55:01 +01:00
parent df13fa3c88
commit dff277ed12
1 changed files with 4 additions and 4 deletions

View File

@ -29,11 +29,11 @@ describe('Ticket', () => {
}); });
}); });
describe('workerFk setter', () => { describe('userFk setter', () => {
it('should set params.workerFk', () => { it('should set params.userFk', () => {
controller.workerFk = 1; controller.userFk = 1;
expect(controller.params.workerFk).toEqual(1); expect(controller.params.userFk).toEqual(1);
}); });
}); });