diff options
Diffstat (limited to 'spec/serializers/pipeline_serializer_spec.rb')
-rw-r--r-- | spec/serializers/pipeline_serializer_spec.rb | 30 |
1 files changed, 1 insertions, 29 deletions
diff --git a/spec/serializers/pipeline_serializer_spec.rb b/spec/serializers/pipeline_serializer_spec.rb index c1386ac4eb2..dfe51e9006f 100644 --- a/spec/serializers/pipeline_serializer_spec.rb +++ b/spec/serializers/pipeline_serializer_spec.rb @@ -160,20 +160,6 @@ RSpec.describe PipelineSerializer do expect(recorded.count).to be_within(2).of(expected_queries) expect(recorded.cached_count).to eq(0) end - - context 'with the :build_report_summary flag turned off' do - before do - stub_feature_flags(build_report_summary: false) - end - - it 'verifies number of queries', :request_store do - recorded = ActiveRecord::QueryRecorder.new { subject } - expected_queries = Gitlab.ee? ? 43 : 40 - - expect(recorded.count).to be_within(2).of(expected_queries) - expect(recorded.cached_count).to eq(0) - end - end end context 'with different refs' do @@ -195,20 +181,6 @@ RSpec.describe PipelineSerializer do expect(recorded.count).to be_within(2).of(expected_queries) expect(recorded.cached_count).to eq(0) end - - context 'with the :build_report_summary flag turned off' do - before do - stub_feature_flags(build_report_summary: false) - end - - it 'verifies number of queries', :request_store do - recorded = ActiveRecord::QueryRecorder.new { subject } - expected_queries = Gitlab.ee? ? 46 : 43 - - expect(recorded.count).to be_within(2).of(expected_queries) - expect(recorded.cached_count).to eq(0) - end - end end context 'with triggered pipelines' do @@ -231,7 +203,7 @@ RSpec.describe PipelineSerializer do # :source_pipeline and :source_job # Existing numbers are high and require performance optimization # https://gitlab.com/gitlab-org/gitlab/-/issues/225156 - expected_queries = Gitlab.ee? ? 101 : 92 + expected_queries = Gitlab.ee? ? 95 : 86 expect(recorded.count).to be_within(2).of(expected_queries) expect(recorded.cached_count).to eq(0) |