style: verkeerde naamgeving opgelost

This commit is contained in:
Laure Jablonski 2025-03-08 19:34:42 +01:00
parent d6f0c0e0fc
commit 6cd4a20df9

View file

@ -23,17 +23,17 @@ describe('AttachmentRepository', () => {
expect(true); expect(true);
}); });
// it('should return the requested attachment', async () => { it('should return the requested attachment', async () => {
// const id = new LearningObjectIdentifier('id02', Language.English, '1'); const id = new LearningObjectIdentifier('id02', Language.English, '1');
// const learningObject = const learningObject =
// await LearningObjectRepository.findByIdentifier(id); await LearningObjectRepository.findByIdentifier(id);
// const attachment = const attachment =
// await AttachmentRepository.findByLearningObjectAndNumber( await AttachmentRepository.findByLearningObjectAndNumber(
// learningObject!, learningObject!,
// 1 1
// ); );
// expect(attachment).toBeTruthy(); expect(attachment).toBeTruthy();
// }); });
}); });