Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewplummer committed Sep 20, 2024
1 parent 61aca8c commit 4e5ef5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion services/api/src/routes/__tests__/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion services/api/src/utils/messaging/__tests__/sms.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 4e5ef5e

Please sign in to comment.