fix: Cleanup

Co-authored-by: Adriaan Jacquet <adriaanjacquet@gmail.com>
This commit is contained in:
Tibo De Peuter 2025-04-03 10:53:45 +02:00
parent ced27c148b
commit 782fc2be19
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
4 changed files with 2 additions and 20 deletions

View file

@ -109,7 +109,7 @@ describe('LearningObjectService', () => {
hruid: 'non_existing', hruid: 'non_existing',
language: Language.Dutch, language: Language.Dutch,
}); });
expect(result).toEqual([]); expect(result).toStrictEqual([]);
}); });
}); });
@ -127,7 +127,7 @@ describe('LearningObjectService', () => {
hruid: 'non_existing', hruid: 'non_existing',
language: Language.Dutch, language: Language.Dutch,
}); });
expect(result).toEqual([]); expect(result).toStrictEqual([]);
}); });
}); });
}); });

View file

@ -3,10 +3,4 @@ export interface StudentDTO {
username: string; username: string;
firstName: string; firstName: string;
lastName: string; lastName: string;
endpoints?: {
classes: string;
questions: string;
invitations: string;
groups: string;
};
} }

View file

@ -3,10 +3,4 @@ export interface TeacherDTO {
username: string; username: string;
firstName: string; firstName: string;
lastName: string; lastName: string;
endpoints?: {
classes: string;
questions: string;
invitations: string;
groups: string;
};
} }

View file

@ -3,10 +3,4 @@ export interface UserDTO {
username: string; username: string;
firstName: string; firstName: string;
lastName: string; lastName: string;
endpoints?: {
self: string;
classes: string;
questions: string;
invitations: string;
};
} }