diff options
author | Nick Schonning <nschonni@gmail.com> | 2023-02-20 00:14:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-20 06:14:50 +0100 |
commit | 5116347eb7cfd0a09f55efbd84f8d3fa11d4d6ba (patch) | |
tree | 02fd0ac43ec43ccb974e4e370f6aeedf223b7d95 /spec/models/web | |
parent | bf785df9fe044f2f13bfb93e6860a74084d8eb8a (diff) |
Autofix Rubocop RSpec/BeEq (#23740)
Diffstat (limited to 'spec/models/web')
-rw-r--r-- | spec/models/web/push_subscription_spec.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/spec/models/web/push_subscription_spec.rb b/spec/models/web/push_subscription_spec.rb index 388154000..a5c34f4ed 100644 --- a/spec/models/web/push_subscription_spec.rb +++ b/spec/models/web/push_subscription_spec.rb @@ -39,7 +39,7 @@ RSpec.describe Web::PushSubscription, type: :model do let(:policy) { 'all' } it 'returns true' do - expect(subject.pushable?(notification)).to eq true + expect(subject.pushable?(notification)).to be true end end @@ -47,7 +47,7 @@ RSpec.describe Web::PushSubscription, type: :model do let(:policy) { 'none' } it 'returns false' do - expect(subject.pushable?(notification)).to eq false + expect(subject.pushable?(notification)).to be false end end @@ -60,13 +60,13 @@ RSpec.describe Web::PushSubscription, type: :model do end it 'returns true' do - expect(subject.pushable?(notification)).to eq true + expect(subject.pushable?(notification)).to be true end end context 'and notification is not from someone you follow' do it 'returns false' do - expect(subject.pushable?(notification)).to eq false + expect(subject.pushable?(notification)).to be false end end end @@ -80,13 +80,13 @@ RSpec.describe Web::PushSubscription, type: :model do end it 'returns true' do - expect(subject.pushable?(notification)).to eq true + expect(subject.pushable?(notification)).to be true end end context 'and notification is not from someone who follows you' do it 'returns false' do - expect(subject.pushable?(notification)).to eq false + expect(subject.pushable?(notification)).to be false end end end |