fix: fixed test merge errors

This commit is contained in:
Adriaan Jacquet 2025-04-19 13:49:37 +02:00
parent 90f43e74ba
commit 460acb27c4
3 changed files with 3 additions and 3 deletions

View file

@ -35,7 +35,7 @@ describe('AssignmentRepository', () => {
const result = await assignmentRepository.findAllByResponsibleTeacher('testleerkracht1');
const resultIds = result.map((it) => it.id).sort((a, b) => (a ?? 0) - (b ?? 0));
expect(resultIds).toEqual([21000, 21002, 21003]);
expect(resultIds).toEqual([21000, 21002, 21003, 21004]);
});
it('should not find removed assignment', async () => {