chore: Update dependencies to the latest versions (#5033)
This commit is contained in:
@@ -26,7 +26,7 @@ describe ::Campaigns::CampaignConversationBuilder do
|
||||
campaign_display_id: campaign.display_id
|
||||
).perform
|
||||
|
||||
expect(campaign_conversation).to eq(nil)
|
||||
expect(campaign_conversation).to be_nil
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -226,7 +226,7 @@ describe ::ContactInboxBuilder do
|
||||
inbox_id: api_inbox.id
|
||||
).perform
|
||||
|
||||
expect(contact_inbox.source_id).not_to be(nil)
|
||||
expect(contact_inbox.source_id).not_to be_nil
|
||||
end
|
||||
end
|
||||
|
||||
@@ -241,7 +241,7 @@ describe ::ContactInboxBuilder do
|
||||
source_id: 'test'
|
||||
).perform
|
||||
|
||||
expect(contact_inbox).to be(nil)
|
||||
expect(contact_inbox).to be_nil
|
||||
end
|
||||
end
|
||||
|
||||
@@ -260,7 +260,7 @@ describe ::ContactInboxBuilder do
|
||||
source_id: 'test'
|
||||
).perform
|
||||
|
||||
expect(contact_inbox).to be(nil)
|
||||
expect(contact_inbox).to be_nil
|
||||
end
|
||||
end
|
||||
|
||||
@@ -275,7 +275,7 @@ describe ::ContactInboxBuilder do
|
||||
source_id: 'test'
|
||||
).perform
|
||||
|
||||
expect(contact_inbox).to be(nil)
|
||||
expect(contact_inbox).to be_nil
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -14,7 +14,7 @@ describe ::CsatSurveys::ResponseBuilder do
|
||||
message: message
|
||||
).perform
|
||||
|
||||
expect(csat_survey_response.valid?).to eq(true)
|
||||
expect(csat_survey_response.valid?).to be(true)
|
||||
end
|
||||
|
||||
it 'updates the value of csat survey response if response already exists' do
|
||||
|
||||
Reference in New Issue
Block a user