From 146a09a0b9527bfcd666b18f13f01a74bb2722d4 Mon Sep 17 00:00:00 2001 From: Alexander Borg Date: Tue, 16 Sep 2025 21:32:32 +0200 Subject: [PATCH] Fix jwt-token --- server/tests/routes/auth.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/tests/routes/auth.test.js b/server/tests/routes/auth.test.js index c95a288..814711b 100644 --- a/server/tests/routes/auth.test.js +++ b/server/tests/routes/auth.test.js @@ -179,8 +179,8 @@ describe('Auth Routes', () => { username: 'newuser', email: 'new@example.com', password: 'password123', - firstName: 'New', - lastName: 'User' + first_name: 'New', + last_name: 'User' }); expect(response.status).to.equal(201);