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.