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>2021-04-12 18:09:30 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-04-12 18:09:30 +0300
commit3df6bfc24c8877b9442d567378b8ebd8816cd443 (patch)
tree2f6cf2e38866e10dc179c1892d37ae971af8d44f /spec/services/projects
parentd7fd035dc387e9c2e5c31bbb53d867239689cfbf (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/services/projects')
-rw-r--r--spec/services/projects/destroy_service_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/services/projects/destroy_service_spec.rb b/spec/services/projects/destroy_service_spec.rb
index 6debef81659..b2a68bbd0aa 100644
--- a/spec/services/projects/destroy_service_spec.rb
+++ b/spec/services/projects/destroy_service_spec.rb
@@ -109,7 +109,7 @@ RSpec.describe Projects::DestroyService, :aggregate_failures do
pipelines = build_list(:ci_pipeline, 3, :running)
allow(project).to receive(:all_pipelines).and_return(pipelines)
- expect(::Ci::AbortPipelinesService).to receive_message_chain(:new, :execute).with(pipelines)
+ expect(::Ci::AbortPipelinesService).to receive_message_chain(:new, :execute).with(pipelines, :project_deleted)
destroy_project(project, user, {})
end