fix: findById test

This commit is contained in:
Marc-Roig 2023-04-12 14:02:26 +02:00
parent 5e865edd81
commit 5e28d1df7d

View File

@ -104,9 +104,7 @@ describe('Review workflows - Stages service', () => {
expect(entityServiceMock.findMany).not.toBeCalled(); expect(entityServiceMock.findMany).not.toBeCalled();
expect(entityServiceMock.findOne).toBeCalled(); expect(entityServiceMock.findOne).toBeCalled();
expect(entityServiceMock.findOne).toBeCalledWith(STAGE_MODEL_UID, 1, { expect(entityServiceMock.findOne).toBeCalledWith(STAGE_MODEL_UID, 1, {});
filters: { workflow: 1 },
});
}); });
}); });
describe('replaceWorkflowStages', () => { describe('replaceWorkflowStages', () => {