Autofix Rubocop RSpec/BeEq (#23740)

This commit is contained in:
Nick Schonning
2023-02-20 00:14:50 -05:00
committed by GitHub
parent bf785df9fe
commit 5116347eb7
39 changed files with 139 additions and 182 deletions

View File

@ -15,7 +15,7 @@ describe FeedInsertWorker do
allow(FeedManager).to receive(:instance).and_return(instance)
result = subject.perform(nil, follower.id)
expect(result).to eq true
expect(result).to be true
expect(instance).to_not have_received(:push_to_home)
end
@ -24,7 +24,7 @@ describe FeedInsertWorker do
allow(FeedManager).to receive(:instance).and_return(instance)
result = subject.perform(status.id, nil)
expect(result).to eq true
expect(result).to be true
expect(instance).to_not have_received(:push_to_home)
end
end