style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-05-16 10:57:18 +00:00
parent 537b1e23ee
commit 952f420f5a
2 changed files with 1 additions and 2 deletions

View file

@ -48,7 +48,6 @@ describe('LearningObjectRepository', () => {
});
it('should return the newest version of the learning object when queried by only hruid and language', async () => {
const result = await learningObjectRepository.findLatestByHruidAndLanguage(newerExample.hruid, newerExample.language);
expect(result).toBeInstanceOf(LearningObject);
expect(result?.version).toBe(10);

View file

@ -36,7 +36,7 @@ export async function seedORM(orm: MikroORM): Promise<void> {
const groups = makeTestGroups(em);
assignments[0].groups = new Collection<Group>([getTestGroup01(), getTestGroup02(), getTestGroup03()])
assignments[0].groups = new Collection<Group>([getTestGroup01(), getTestGroup02(), getTestGroup03()]);
assignments[1].groups = new Collection<Group>([getTestGroup04()]);
const teacherInvitations = makeTestTeacherInvitations(em);