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>2021-06-09 21:11:25 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-06-09 21:11:25 +0300
commitd40d684afaec767bb05efdbeaa4ce3620cd337bb (patch)
treea6c61c8bc90f05a2ddf6817863d364239a5357ce /spec/factories/integrations.rb
parentc0f42c6d662b776777afbf79ba72d8e833b8de48 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/factories/integrations.rb')
-rw-r--r--spec/factories/integrations.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/factories/integrations.rb b/spec/factories/integrations.rb
index c47c3791255..4f60398652c 100644
--- a/spec/factories/integrations.rb
+++ b/spec/factories/integrations.rb
@@ -6,7 +6,7 @@ FactoryBot.define do
type { 'Integration' }
end
- factory :custom_issue_tracker_service, class: 'Integrations::CustomIssueTracker' do
+ factory :custom_issue_tracker_integration, class: 'Integrations::CustomIssueTracker' do
project
active { true }
issue_tracker
@@ -79,13 +79,13 @@ FactoryBot.define do
end
end
- factory :confluence_service, class: 'Integrations::Confluence' do
+ factory :confluence_integration, class: 'Integrations::Confluence' do
project
active { true }
confluence_url { 'https://example.atlassian.net/wiki' }
end
- factory :bugzilla_service, class: 'Integrations::Bugzilla' do
+ factory :bugzilla_integration, class: 'Integrations::Bugzilla' do
project
active { true }
issue_tracker