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>2023-01-30 17:58:19 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-01-30 17:58:19 +0300
commit91072f3125286adfb56d4633bc877ea6ace975e0 (patch)
tree2718ea887af88c749bac9b84f1132620d76ce1ae /spec/requests/api
parente92925533667e147ff34cf1e9b8af21680c8c7d4 (diff)
Add latest changes from gitlab-org/security/gitlab@15-8-stable-ee
Diffstat (limited to 'spec/requests/api')
-rw-r--r--spec/requests/api/container_registry_event_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/requests/api/container_registry_event_spec.rb b/spec/requests/api/container_registry_event_spec.rb
index 64c17bc2eef..e83a3faae93 100644
--- a/spec/requests/api/container_registry_event_spec.rb
+++ b/spec/requests/api/container_registry_event_spec.rb
@@ -4,7 +4,7 @@ require 'spec_helper'
RSpec.describe API::ContainerRegistryEvent, feature_category: :container_registry do
let(:secret_token) { 'secret_token' }
- let(:events) { [{ action: 'push' }, { action: 'pull' }] }
+ let(:events) { [{ action: 'push' }, { action: 'pull' }, { action: 'mount' }] }
let(:registry_headers) { { 'Content-Type' => ::API::ContainerRegistryEvent::DOCKER_DISTRIBUTION_EVENTS_V1_JSON } }
describe 'POST /container_registry_event/events' do