Change occurrence of Sidekiq::Testing.inline!

- Change it to perform_enqueued_jobs
This commit is contained in:
Reuben Pereira 2019-07-03 20:02:17 +00:00 committed by Mayra Cabrera
parent fb35a3b7f4
commit 49b5ef5c31
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ describe BackfillStoreProjectFullPathInRepo, :migration do
subject(:migration) { described_class.new }
around do |example|
Sidekiq::Testing.inline! do
perform_enqueued_jobs do
example.run
end
end