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/requests/api/graphql/project/pipeline_spec.rb')
-rw-r--r--spec/requests/api/graphql/project/pipeline_spec.rb13
1 files changed, 8 insertions, 5 deletions
diff --git a/spec/requests/api/graphql/project/pipeline_spec.rb b/spec/requests/api/graphql/project/pipeline_spec.rb
index d20ee5bfdff..114072bf1f9 100644
--- a/spec/requests/api/graphql/project/pipeline_spec.rb
+++ b/spec/requests/api/graphql/project/pipeline_spec.rb
@@ -111,11 +111,14 @@ RSpec.describe 'getting pipeline information nested in a project', feature_categ
context 'when a job has been retried' do
let_it_be(:retried) do
- create(:ci_build, :retried,
- name: build_job.name,
- pipeline: pipeline,
- stage_idx: 0,
- stage: build_job.stage_name)
+ create(
+ :ci_build,
+ :retried,
+ name: build_job.name,
+ pipeline: pipeline,
+ stage_idx: 0,
+ stage: build_job.stage_name
+ )
end
let(:fields) do