chore: Update dependencies to the latest versions (#5033)

This commit is contained in:
Sojan Jose
2022-07-15 04:51:59 +02:00
committed by GitHub
parent ea1a27c7d4
commit 4187428729
122 changed files with 546 additions and 526 deletions

View File

@@ -52,7 +52,7 @@ RSpec.describe Contact do
it 'updates phone number when adding valid phone number' do
contact = create(:contact)
expect(contact.update!(phone_number: '+12312312321')).to eq true
expect(contact.update!(phone_number: '+12312312321')).to be true
expect(contact.phone_number).to eq '+12312312321'
end
end
@@ -65,7 +65,7 @@ RSpec.describe Contact do
it 'updates email when adding valid email' do
contact = create(:contact)
expect(contact.update!(email: 'test@test.com')).to eq true
expect(contact.update!(email: 'test@test.com')).to be true
expect(contact.email).to eq 'test@test.com'
end
end