diff --git a/tests/APIList.test.ts b/tests/APIList.test.ts index ba73767..e3d1fdf 100644 --- a/tests/APIList.test.ts +++ b/tests/APIList.test.ts @@ -25,7 +25,7 @@ describe('API-Endpoints: list', () => { expect(response.status).toBe(401); const json = await response.json(); - const errorObj = { error: 'Unauthorized' } + const errorObj = { error: 'Unauthorized' }; expect(json).toEqual(errorObj); });