Reduce .times usage in AccountStatusesCleanupPolicy (#27947)

This commit is contained in:
Matt Jankowski 2023-11-20 04:08:54 -05:00 committed by GitHub
parent d2aacea8da
commit 371f355719
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -280,10 +280,10 @@ RSpec.describe AccountStatusesCleanupPolicy do
let(:account_statuses_cleanup_policy) { Fabricate(:account_statuses_cleanup_policy, account: account) }
before do
4.times { faved_primary.increment_count!(:favourites_count) }
5.times { faved_secondary.increment_count!(:favourites_count) }
4.times { reblogged_primary.increment_count!(:reblogs_count) }
5.times { reblogged_secondary.increment_count!(:reblogs_count) }
faved_primary.status_stat.update(favourites_count: 4)
faved_secondary.status_stat.update(favourites_count: 5)
reblogged_primary.status_stat.update(reblogs_count: 4)
reblogged_secondary.status_stat.update(reblogs_count: 5)
end
context 'when passed a max_id' do