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

@@ -74,7 +74,7 @@ RSpec.describe Inbox do
let(:channel_val) { Channel::FacebookPage.new }
it do
expect(inbox.facebook?).to eq(true)
expect(inbox.facebook?).to be(true)
expect(inbox.inbox_type).to eq('Facebook')
end
end
@@ -83,7 +83,7 @@ RSpec.describe Inbox do
let(:channel_val) { Channel::WebWidget.new }
it do
expect(inbox.facebook?).to eq(false)
expect(inbox.facebook?).to be(false)
expect(inbox.inbox_type).to eq('Website')
end
end
@@ -98,7 +98,7 @@ RSpec.describe Inbox do
let(:channel_val) { Channel::WebWidget.new }
it do
expect(inbox.web_widget?).to eq(true)
expect(inbox.web_widget?).to be(true)
expect(inbox.inbox_type).to eq('Website')
end
end
@@ -107,7 +107,7 @@ RSpec.describe Inbox do
let(:channel_val) { Channel::Api.new }
it do
expect(inbox.web_widget?).to eq(false)
expect(inbox.web_widget?).to be(false)
expect(inbox.inbox_type).to eq('API')
end
end
@@ -122,7 +122,7 @@ RSpec.describe Inbox do
let(:channel_val) { Channel::Api.new }
it do
expect(inbox.api?).to eq(true)
expect(inbox.api?).to be(true)
expect(inbox.inbox_type).to eq('API')
end
end
@@ -131,7 +131,7 @@ RSpec.describe Inbox do
let(:channel_val) { Channel::FacebookPage.new }
it do
expect(inbox.api?).to eq(false)
expect(inbox.api?).to be(false)
expect(inbox.inbox_type).to eq('Facebook')
end
end