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>2019-10-02 03:06:26 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2019-10-02 03:06:26 +0300
commit587794b4b8a6e919e77ee4abe8215fa291e6a91d (patch)
tree380d6578d1ab5902bb521071128bafd4f70472ef /spec/factories/project_hooks.rb
parente0bd3a45d9dc6c74cac1a33ea8c03d6d8334249b (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/factories/project_hooks.rb')
-rw-r--r--spec/factories/project_hooks.rb22
1 files changed, 11 insertions, 11 deletions
diff --git a/spec/factories/project_hooks.rb b/spec/factories/project_hooks.rb
index 96c9742c7d0..6592141e26d 100644
--- a/spec/factories/project_hooks.rb
+++ b/spec/factories/project_hooks.rb
@@ -3,7 +3,7 @@
FactoryBot.define do
factory :project_hook do
url { generate(:url) }
- enable_ssl_verification false
+ enable_ssl_verification { false }
project
trait :token do
@@ -11,16 +11,16 @@ FactoryBot.define do
end
trait :all_events_enabled do
- push_events true
- merge_requests_events true
- tag_push_events true
- issues_events true
- confidential_issues_events true
- note_events true
- confidential_note_events true
- job_events true
- pipeline_events true
- wiki_page_events true
+ push_events { true }
+ merge_requests_events { true }
+ tag_push_events { true }
+ issues_events { true }
+ confidential_issues_events { true }
+ note_events { true }
+ confidential_note_events { true }
+ job_events { true }
+ pipeline_events { true }
+ wiki_page_events { true }
end
end
end