From ce44fbb640c49854f6e09254bc916cd4107cc794 Mon Sep 17 00:00:00 2001 From: Yadd Date: Sat, 20 Apr 2024 10:28:42 +0400 Subject: [PATCH] Fix test --- .../tom-server/src/application-server/middlewares/auth.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tom-server/src/application-server/middlewares/auth.test.ts b/packages/tom-server/src/application-server/middlewares/auth.test.ts index b7681926..e2b76cda 100644 --- a/packages/tom-server/src/application-server/middlewares/auth.test.ts +++ b/packages/tom-server/src/application-server/middlewares/auth.test.ts @@ -52,7 +52,7 @@ describe('Authentication', () => { it('should throw AppServerAPIError with 403 status if authorization token does not match regex', () => { mockRequest = { headers: { - authorization: `Bearer falsy_token` + authorization: `Bearer falsy token` } } expect(() => {