diff options
author | Shinya Maeda <shinya@gitlab.com> | 2017-09-01 17:54:07 +0900 |
---|---|---|
committer | Shinya Maeda <shinya@gitlab.com> | 2017-09-03 23:49:11 +0900 |
commit | d8478d166b96b7b40b27b162d6afd170a5c8d763 (patch) | |
tree | 14c50925c81abe01886e23a2583107bacef48b39 /features | |
parent | 5547baa3eb1979e8de36f00174c1f98ddc3dabd0 (diff) | |
download | gitlab-ce-d8478d166b96b7b40b27b162d6afd170a5c8d763.tar.gz |
Fix spec
Diffstat (limited to 'features')
-rw-r--r-- | features/steps/project/pages.rb | 3 |
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, |