Skip to content

Commit

Permalink
fix: linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
francisvaut committed Apr 27, 2024
1 parent 2664081 commit db56f96
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions frontend/src/test/unit/types/submission.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ describe('submission type', () => {

it('create a submission instance from JSON data', () => {
const responseSubmissionJSON = {
id: 'submission1_id',
submission_number: 1,
submission_time: new Date('November 1, 2024 04:20:00'),
files: [],
results: [],
is_valid: true,
id: 'submission1_id',
submission_number: 1,
submission_time: new Date('November 1, 2024 04:20:00'),
files: [],
results: [],
is_valid: true,
};

const submission = Submission.fromJSON(responseSubmissionJSON);
Expand Down

0 comments on commit db56f96

Please sign in to comment.