style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-05-19 14:38:09 +00:00
parent 13e29d7d5f
commit 0862cb5c6b
4 changed files with 10 additions and 11 deletions

View file

@ -13,7 +13,8 @@ import {
createStudentRequestHandler,
getStudentRequestsHandler,
deleteClassJoinRequestHandler,
getStudentRequestHandler, getStudentAssignmentsHandler,
getStudentRequestHandler,
getStudentAssignmentsHandler,
} from '../../src/controllers/students.js';
import { getDireStraits, getNoordkaap, getTheDoors, TEST_STUDENTS } from '../test_assets/users/students.testdata.js';
import { NotFoundException } from '../../src/exceptions/not-found-exception.js';
@ -163,7 +164,6 @@ describe('Student controllers', () => {
expect(result.assignments).to.have.length.greaterThan(0);
});
it('Student submissions', async () => {
const submission = getSubmission01();
req = { params: { username: submission.submitter.username }, query: { full: 'true' } };