fix(ticketTracking): refs #6398 assign ticket workerFk to userFk #1924

Merged
pablone merged 5 commits from 6398-ticketTrackingAsignFix into master 2024-01-10 13:04:28 +00:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit dff277ed12 - Show all commits

View File

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