Change `have_enqueued_sidekiq_job` usage to always make argument expectations explicit (#29974)

This commit is contained in:
Claire 2024-04-17 13:13:52 +02:00 committed by GitHub
parent 013671f29f
commit 8bece467f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ RSpec.describe CreateFeaturedTagService do
expect { subject.call(account, tag) }
.to change(FeaturedTag, :count).by(1)
expect(ActivityPub::AccountRawDistributionWorker)
.to_not have_enqueued_sidekiq_job
.to_not have_enqueued_sidekiq_job(any_args)
end
end
end

View File

@ -24,7 +24,7 @@ RSpec.describe UnmuteService do
it 'removes the account mute and does not create a merge' do
expect { subject.call(account, target_account) }
.to remove_account_mute
expect(MergeWorker).to_not have_enqueued_sidekiq_job
expect(MergeWorker).to_not have_enqueued_sidekiq_job(any_args)
end
end
@ -39,7 +39,7 @@ RSpec.describe UnmuteService do
it 'does nothing and returns' do
expect { subject.call(account, target_account) }
.to_not(change { account.reload.muting?(target_account) })
expect(MergeWorker).to_not have_enqueued_sidekiq_job
expect(MergeWorker).to_not have_enqueued_sidekiq_job(any_args)
end
end
end