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:
Diffstat (limited to 'spec/services/ci/retry_job_service_spec.rb')
-rw-r--r--spec/services/ci/retry_job_service_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/services/ci/retry_job_service_spec.rb b/spec/services/ci/retry_job_service_spec.rb
index 1646afde21d..1708f475e6b 100644
--- a/spec/services/ci/retry_job_service_spec.rb
+++ b/spec/services/ci/retry_job_service_spec.rb
@@ -403,11 +403,11 @@ RSpec.describe Ci::RetryJobService, feature_category: :continuous_integration do
end
it 'does not cause an N+1 when updating the job ownership' do
- control_count = ActiveRecord::QueryRecorder.new(skip_cached: false) { service.execute(job) }.count
+ control = ActiveRecord::QueryRecorder.new(skip_cached: false) { service.execute(job) }
create_list(:ci_build, 2, :skipped, pipeline: pipeline, ci_stage: deploy_stage)
- expect { service.execute(job) }.not_to exceed_all_query_limit(control_count)
+ expect { service.execute(job) }.not_to exceed_all_query_limit(control)
end
end