diff options
Diffstat (limited to 'spec/features')
-rw-r--r-- | spec/features/pipelines_spec.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/spec/features/pipelines_spec.rb b/spec/features/pipelines_spec.rb index f88b8f8e60b..248e44a93aa 100644 --- a/spec/features/pipelines_spec.rb +++ b/spec/features/pipelines_spec.rb @@ -34,7 +34,6 @@ describe "Pipelines" do let!(:running) { create(:ci_build, :running, pipeline: pipeline, stage: 'test', commands: 'test') } before do - pipeline.reload_status! visit namespace_project_pipelines_path(project.namespace, project) end @@ -53,7 +52,6 @@ describe "Pipelines" do let!(:failed) { create(:ci_build, :failed, pipeline: pipeline, stage: 'test', commands: 'test') } before do - pipeline.reload_status! visit namespace_project_pipelines_path(project.namespace, project) end @@ -87,7 +85,6 @@ describe "Pipelines" do let!(:running) { create(:generic_commit_status, status: 'running', pipeline: pipeline, stage: 'test') } before do - pipeline.reload_status! visit namespace_project_pipelines_path(project.namespace, project) end @@ -104,7 +101,6 @@ describe "Pipelines" do let!(:failed) { create(:generic_commit_status, status: 'failed', pipeline: pipeline, stage: 'test') } before do - pipeline.reload_status! visit namespace_project_pipelines_path(project.namespace, project) end |