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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-01-24 06:07:24 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-01-24 06:07:24 +0300
commitba318c97cd1adf21ecedb6efaeb266c5c75d4505 (patch)
treeb7522e2660e6c63c3dafe79be5d48c0f66835eaa /spec/services
parentfb59bd894060548bee04b6761796921f18512c44 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/services')
-rw-r--r--spec/services/ci/create_downstream_pipeline_service_spec.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/spec/services/ci/create_downstream_pipeline_service_spec.rb b/spec/services/ci/create_downstream_pipeline_service_spec.rb
index fd978bffacb..7b576339c61 100644
--- a/spec/services/ci/create_downstream_pipeline_service_spec.rb
+++ b/spec/services/ci/create_downstream_pipeline_service_spec.rb
@@ -890,23 +890,6 @@ RSpec.describe Ci::CreateDownstreamPipelineService, '#execute', feature_category
end
end
end
-
- context 'with :ci_limit_complete_hierarchy_size disabled' do
- before do
- stub_feature_flags(ci_limit_complete_hierarchy_size: false)
- end
-
- it 'creates a new pipeline' do
- expect { subject }.to change { Ci::Pipeline.count }.by(1)
- expect(subject).to be_success
- end
-
- it 'marks the bridge job as successful' do
- subject
-
- expect(bridge.reload).to be_success
- end
- end
end
end
end