style: fix linting issues met ESLint

This commit is contained in:
Lint Action 2025-05-04 12:19:37 +00:00
parent bcf61e1179
commit 2796438f45
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ import { GroupController } from "../../src/controllers/groups";
describe("Test controller groups", () => {
it("Get groups", async () => {
const classId = 'X2J9QT'; // class01
const classId = 'X2J9QT'; // Class01
const assignmentNumber = 21000;
const controller = new GroupController(classId, assignmentNumber);

View file

@ -5,7 +5,7 @@ import { Language } from "../../src/data-objects/language";
describe("Test controller submissions", () => {
it("Get submission by number", async () => {
const hruid = "id03";
const classId = 'X2J9QT'; // class01
const classId = 'X2J9QT'; // Class01
const controller = new SubmissionController(hruid);
const data = await controller.getByNumber(Language.English, 1, classId, 1, 1, 1);