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-12-06 03:08:00 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-12-06 03:08:00 +0300
commit1e2aa980a7214f025d22e1d8936147391b670a89 (patch)
tree80c087d22788031d8fe0d2021306ba4c0636960d /spec/helpers
parent339b91536372cb04b4528725aae408145628ca69 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/helpers')
-rw-r--r--spec/helpers/projects/pipeline_helper_spec.rb16
1 files changed, 1 insertions, 15 deletions
diff --git a/spec/helpers/projects/pipeline_helper_spec.rb b/spec/helpers/projects/pipeline_helper_spec.rb
index 7e117fe0cce..7b8b349c3e5 100644
--- a/spec/helpers/projects/pipeline_helper_spec.rb
+++ b/spec/helpers/projects/pipeline_helper_spec.rb
@@ -48,22 +48,8 @@ RSpec.describe Projects::PipelineHelper do
graphql_resource_etag: graphql_etag_pipeline_path(pipeline),
pipeline_iid: pipeline.iid,
pipelines_path: project_pipelines_path(project),
- name: pipeline.name,
- total_jobs: pipeline.total_size,
yaml_errors: pipeline.yaml_errors,
- failure_reason: pipeline.failure_reason,
- triggered_by_path: '',
- schedule: pipeline.schedule?.to_s,
- trigger: pipeline.trigger?.to_s,
- child: pipeline.child?.to_s,
- latest: pipeline.latest?.to_s,
- merge_train_pipeline: pipeline.merge_train_pipeline?.to_s,
- invalid: pipeline.has_yaml_errors?.to_s,
- failed: pipeline.failure_reason?.to_s,
- auto_devops: pipeline.auto_devops_source?.to_s,
- detached: pipeline.detached_merge_request_pipeline?.to_s,
- stuck: pipeline.stuck?.to_s,
- ref_text: pipeline.ref_text
+ trigger: pipeline.trigger?.to_s
})
end
end