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:
authorMatija Čupić <matteeyah@gmail.com>2018-06-06 20:09:46 +0300
committerMatija Čupić <matteeyah@gmail.com>2018-06-06 20:09:46 +0300
commit78ae23045bae8a75775a11675afd5836fb8f318b (patch)
tree831f45fdbab4c639703ddde20c6fb1a6affef736 /spec/models/project_auto_devops_spec.rb
parent9738b0a42bdfca5b8fbf0a0ef2ade4d46be38c75 (diff)
Reverse logic of manual and continuous deploy strategies
Diffstat (limited to 'spec/models/project_auto_devops_spec.rb')
-rw-r--r--spec/models/project_auto_devops_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/project_auto_devops_spec.rb b/spec/models/project_auto_devops_spec.rb
index 37cd1f571e5..040e76e28fc 100644
--- a/spec/models/project_auto_devops_spec.rb
+++ b/spec/models/project_auto_devops_spec.rb
@@ -69,11 +69,11 @@ describe ProjectAutoDevops do
end
end
- context 'when deploy_strategy is continuous' do
+ context 'when deploy_strategy is manual' do
let(:domain) { 'example.com' }
before do
- auto_devops.deploy_strategy = 'continuous'
+ auto_devops.deploy_strategy = 'manual'
end
it do