summaryrefslogtreecommitdiff
path: root/spec/factories/project_error_tracking_settings.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-10-02 00:06:26 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2019-10-02 00:06:26 +0000
commit587794b4b8a6e919e77ee4abe8215fa291e6a91d (patch)
tree380d6578d1ab5902bb521071128bafd4f70472ef /spec/factories/project_error_tracking_settings.rb
parente0bd3a45d9dc6c74cac1a33ea8c03d6d8334249b (diff)
downloadgitlab-ce-587794b4b8a6e919e77ee4abe8215fa291e6a91d.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/factories/project_error_tracking_settings.rb')
-rw-r--r--spec/factories/project_error_tracking_settings.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/spec/factories/project_error_tracking_settings.rb b/spec/factories/project_error_tracking_settings.rb
index be30bd0260a..f90a2d17846 100644
--- a/spec/factories/project_error_tracking_settings.rb
+++ b/spec/factories/project_error_tracking_settings.rb
@@ -3,10 +3,10 @@
FactoryBot.define do
factory :project_error_tracking_setting, class: ErrorTracking::ProjectErrorTrackingSetting do
project
- api_url 'https://gitlab.com/api/0/projects/sentry-org/sentry-project'
- enabled true
- token 'access_token_123'
- project_name 'Sentry Project'
- organization_name 'Sentry Org'
+ api_url { 'https://gitlab.com/api/0/projects/sentry-org/sentry-project' }
+ enabled { true }
+ token { 'access_token_123' }
+ project_name { 'Sentry Project' }
+ organization_name { 'Sentry Org' }
end
end