From 4e5ef5e43968508c37ebea4095236613d6fd314d Mon Sep 17 00:00:00 2001 From: Andrew Plummer Date: Sat, 21 Sep 2024 02:41:51 +0900 Subject: [PATCH] fixed tests --- services/api/src/routes/__tests__/users.js | 2 +- services/api/src/utils/messaging/__tests__/sms.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/services/api/src/routes/__tests__/users.js b/services/api/src/routes/__tests__/users.js index 20ffe3d5..3a8ffc7c 100644 --- a/services/api/src/routes/__tests__/users.js +++ b/services/api/src/routes/__tests__/users.js @@ -63,7 +63,7 @@ describe('/1/users', () => { it('should allow unsetting phone number', async () => { let user = await createUser({ - phone: '+15551234567', + phone: '+15552234567', }); const response = await request( 'PATCH', diff --git a/services/api/src/utils/messaging/__tests__/sms.js b/services/api/src/utils/messaging/__tests__/sms.js index 5136ec99..42506882 100644 --- a/services/api/src/utils/messaging/__tests__/sms.js +++ b/services/api/src/utils/messaging/__tests__/sms.js @@ -95,7 +95,7 @@ describe('sendMessage', () => { describe('other', () => { it('should be able to send an sms to a user without to', async () => { const user = await createUser({ - phone: '+11111111111', + phone: '+15552234567', }); await sendMessage({ user,