From df24fcf7e8a27b0be8c1d0a6015a86c02d521f92 Mon Sep 17 00:00:00 2001 From: Chi Cong Tran Date: Tue, 23 Sep 2025 09:36:04 +0200 Subject: [PATCH] formatting --- tests/APIList.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); });