style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-04-18 20:27:23 +00:00
parent 78cb7812a7
commit fc7a49d69b

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]);
});
it('should not find removed assignment', async () => {