Update rubocop to version 1.79.2 (#35688)

This commit is contained in:
Matt Jankowski 2025-08-06 04:42:53 -04:00 committed by GitHub
parent a4c05c694f
commit 4c2ddbf2c4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 11 additions and 13 deletions

View file

@ -112,7 +112,7 @@ RSpec.describe Scheduler::AccountsStatusesCleanupScheduler do
expect { subject.perform }
.to change(Status, :count).by(-subject.compute_budget) # Cleanable statuses
.and (not_change { account_bob.statuses.count }) # No cleanup policy for account
.and not_change { account_bob.statuses.count } # No cleanup policy for account
.and(not_change { account_dave.statuses.count }) # Disabled cleanup policy
end