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:
authorShinya Maeda <shinya@gitlab.com>2017-09-01 11:54:07 +0300
committerShinya Maeda <shinya@gitlab.com>2017-09-03 17:49:11 +0300
commitd8478d166b96b7b40b27b162d6afd170a5c8d763 (patch)
tree14c50925c81abe01886e23a2583107bacef48b39 /features
parent5547baa3eb1979e8de36f00174c1f98ddc3dabd0 (diff)
Fix spec
Diffstat (limited to 'features')
-rw-r--r--features/steps/project/pages.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/features/steps/project/pages.rb b/features/steps/project/pages.rb
index 9705470738e..124a132d688 100644
--- a/features/steps/project/pages.rb
+++ b/features/steps/project/pages.rb
@@ -37,7 +37,8 @@ class Spinach::Features::ProjectPages < Spinach::FeatureSteps
step 'pages are deployed' do
pipeline = @project.pipelines.create(ref: 'HEAD',
sha: @project.commit('HEAD').sha,
- source: :push)
+ source: :push,
+ protected: false)
build = build(:ci_build,
project: @project,