From 6199f84ae594e2cf3e07540af13e4e56b0bb2429 Mon Sep 17 00:00:00 2001 From: Alexander Borg Date: Tue, 16 Sep 2025 21:46:48 +0200 Subject: [PATCH] Fix jwt-token --- server/tests/routes/auth.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/tests/routes/auth.test.js b/server/tests/routes/auth.test.js index ad931d9..d614d05 100644 --- a/server/tests/routes/auth.test.js +++ b/server/tests/routes/auth.test.js @@ -317,7 +317,7 @@ describe('Auth Routes', () => { expect(response.status).to.equal(403); expect(response.body.success).to.be.false; - expect(response.body.message).to.include('IP address not allowed'); + expect(response.body.message).to.include('Access denied. Your IP address is not'); }); });