2
0

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
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