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/abort_pipelines_service_spec.rb')
-rw-r--r--spec/services/ci/abort_pipelines_service_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/services/ci/abort_pipelines_service_spec.rb b/spec/services/ci/abort_pipelines_service_spec.rb
index 60f3ee11442..af6a70989c9 100644
--- a/spec/services/ci/abort_pipelines_service_spec.rb
+++ b/spec/services/ci/abort_pipelines_service_spec.rb
@@ -70,12 +70,12 @@ RSpec.describe Ci::AbortPipelinesService, feature_category: :continuous_integrat
end
it 'avoids N+1 queries' do
- control_count = ActiveRecord::QueryRecorder.new { abort_project_pipelines }.count
+ control = ActiveRecord::QueryRecorder.new { abort_project_pipelines }
pipelines = create_list(:ci_pipeline, 5, :running, project: project)
create_list(:ci_build, 5, :running, pipeline: pipelines.first)
- expect { abort_project_pipelines }.not_to exceed_query_limit(control_count)
+ expect { abort_project_pipelines }.not_to exceed_query_limit(control)
end
context 'with live build logs' do