summaryrefslogtreecommitdiff
path: root/app/services/integrations/test/project_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/integrations/test/project_service.rb')
-rw-r--r--app/services/integrations/test/project_service.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/app/services/integrations/test/project_service.rb b/app/services/integrations/test/project_service.rb
index 39471d373f9..d72ca928c34 100644
--- a/app/services/integrations/test/project_service.rb
+++ b/app/services/integrations/test/project_service.rb
@@ -16,9 +16,7 @@ module Integrations
def data
strong_memoize(:data) do
- next pipeline_events_data if integration.is_a?(::PipelinesEmailService)
-
- case event
+ case event || integration.default_test_event
when 'push', 'tag_push'
push_events_data
when 'note', 'confidential_note'
@@ -37,8 +35,6 @@ module Integrations
deployment_events_data
when 'release'
releases_events_data
- else
- push_events_data
end
end
end