diff options
author | Reuben Pereira <rpereira@gitlab.com> | 2019-07-03 20:02:17 +0000 |
---|---|---|
committer | Mayra Cabrera <mcabrera@gitlab.com> | 2019-07-03 20:02:17 +0000 |
commit | 49b5ef5c3110ec25b65e20c75c3f98dbb2c8dfea (patch) | |
tree | 82a54cddea8cec0e667ce62c259b3dd662dc2eac /spec | |
parent | fb35a3b7f4250f683b6a234dd70d24aa38f229a6 (diff) | |
download | gitlab-ce-49b5ef5c3110ec25b65e20c75c3f98dbb2c8dfea.tar.gz |
Change occurrence of Sidekiq::Testing.inline!
- Change it to perform_enqueued_jobs
Diffstat (limited to 'spec')
-rw-r--r-- | spec/migrations/backfill_store_project_full_path_in_repo_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/migrations/backfill_store_project_full_path_in_repo_spec.rb b/spec/migrations/backfill_store_project_full_path_in_repo_spec.rb index 34f4a36d63d..65a918d5440 100644 --- a/spec/migrations/backfill_store_project_full_path_in_repo_spec.rb +++ b/spec/migrations/backfill_store_project_full_path_in_repo_spec.rb @@ -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 |