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:
authorLin Jen-Shin <godfat@godfat.org>2017-07-18 17:32:34 +0300
committerLin Jen-Shin <godfat@godfat.org>2017-07-18 18:48:14 +0300
commit7bd5e571256aff6de132b118f04224e56abf3228 (patch)
tree4ec27daa73e2588299b73686ee8954ac299915b1 /spec/services/ci/process_pipeline_service_spec.rb
parent1ed6d1541c7973c08cdd4c1906ddcc0c3db893e3 (diff)
Instead of adding master, stub_not_protect_default_branch
Diffstat (limited to 'spec/services/ci/process_pipeline_service_spec.rb')
-rw-r--r--spec/services/ci/process_pipeline_service_spec.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/services/ci/process_pipeline_service_spec.rb b/spec/services/ci/process_pipeline_service_spec.rb
index 1e938a97f5a..5a34ec12c8f 100644
--- a/spec/services/ci/process_pipeline_service_spec.rb
+++ b/spec/services/ci/process_pipeline_service_spec.rb
@@ -9,7 +9,9 @@ describe Ci::ProcessPipelineService, '#execute', :services do
end
before do
- project.add_master(user)
+ stub_not_protect_default_branch
+
+ project.add_developer(user)
end
context 'when simple pipeline is defined' do