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:
Diffstat (limited to 'spec/models/integration_spec.rb')
-rw-r--r--spec/models/integration_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/integration_spec.rb b/spec/models/integration_spec.rb
index 4938e1797af..78b30221a24 100644
--- a/spec/models/integration_spec.rb
+++ b/spec/models/integration_spec.rb
@@ -1303,8 +1303,8 @@ RSpec.describe Integration do
describe '#async_execute' do
let(:integration) { described_class.new(id: 123) }
- let(:data) { { object_kind: 'push' } }
- let(:supported_events) { %w[push] }
+ let(:data) { { object_kind: 'build' } }
+ let(:supported_events) { %w[push build] }
subject(:async_execute) { integration.async_execute(data) }