From 3e3c8e0587e86578dfff4a843e07b014397fe4b6 Mon Sep 17 00:00:00 2001 From: Lint Action Date: Thu, 6 Mar 2025 11:12:49 +0000 Subject: [PATCH] style: fix linting issues met Prettier --- backend/tests/data/users.test.ts | 6 ++++-- config/loki/config.yml | 1 - 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/backend/tests/data/users.test.ts b/backend/tests/data/users.test.ts index b066b059..887748a2 100644 --- a/backend/tests/data/users.test.ts +++ b/backend/tests/data/users.test.ts @@ -20,7 +20,8 @@ describe('StudentRepository', () => { new Student(username, firstName, lastName) ); - const retrievedStudent = await studentRepository.findByUsername(username); + const retrievedStudent = + await studentRepository.findByUsername(username); expect(retrievedStudent).toBeTruthy(); expect(retrievedStudent?.firstName).toBe(firstName); expect(retrievedStudent?.lastName).toBe(lastName); @@ -29,7 +30,8 @@ describe('StudentRepository', () => { it('should no longer return the queried student after he was removed again', async () => { await studentRepository.deleteByUsername(username); - const retrievedStudent = await studentRepository.findByUsername(username); + const retrievedStudent = + await studentRepository.findByUsername(username); expect(retrievedStudent).toBeNull(); }); }); diff --git a/config/loki/config.yml b/config/loki/config.yml index f5ba3799..b84377bd 100644 --- a/config/loki/config.yml +++ b/config/loki/config.yml @@ -1,4 +1,3 @@ - # This is a complete configuration to deploy Loki backed by the filesystem. # The index will be shipped to the storage via tsdb-shipper.