Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReuben Pereira <rpereira@gitlab.com>2019-07-03 23:02:17 +0300
committerMayra Cabrera <mcabrera@gitlab.com>2019-07-03 23:02:17 +0300
commit49b5ef5c3110ec25b65e20c75c3f98dbb2c8dfea (patch)
tree82a54cddea8cec0e667ce62c259b3dd662dc2eac /spec/migrations/backfill_store_project_full_path_in_repo_spec.rb
parentfb35a3b7f4250f683b6a234dd70d24aa38f229a6 (diff)
Change occurrence of Sidekiq::Testing.inline!
- Change it to perform_enqueued_jobs
Diffstat (limited to 'spec/migrations/backfill_store_project_full_path_in_repo_spec.rb')
-rw-r--r--spec/migrations/backfill_store_project_full_path_in_repo_spec.rb2
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