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-06-28 15:13:13 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-06-28 15:13:40 +0300
commita325d3a2c05b8f664a76912c5ac32d0a8e45e562 (patch)
tree6840627ef29240e1f4da01c36334f9a43549cd65 /spec/controllers/admin
parentc49ef67dc34ca5770ca16ce3df17786f82cfbcb2 (diff)
Add latest changes from gitlab-org/security/gitlab@16-1-stable-ee
Diffstat (limited to 'spec/controllers/admin')
-rw-r--r--spec/controllers/admin/hooks_controller_spec.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/spec/controllers/admin/hooks_controller_spec.rb b/spec/controllers/admin/hooks_controller_spec.rb
index 4e68ffdda2a..86c3405863a 100644
--- a/spec/controllers/admin/hooks_controller_spec.rb
+++ b/spec/controllers/admin/hooks_controller_spec.rb
@@ -55,12 +55,13 @@ RSpec.describe Admin::HooksController do
hook.update!(url_variables: { 'foo' => 'bar', 'baz' => 'woo' })
hook_params = {
- url: 'http://example.com/{baz}?token={token}',
+ url: 'http://example.com/{bar}?token={token}',
enable_ssl_verification: false,
url_variables: [
{ key: 'token', value: 'some secret value' },
- { key: 'baz', value: 'qux' },
- { key: 'foo', value: nil }
+ { key: 'baz', value: nil },
+ { key: 'foo', value: nil },
+ { key: 'bar', value: 'qux' }
]
}
@@ -72,7 +73,7 @@ RSpec.describe Admin::HooksController do
expect(flash[:notice]).to include('was updated')
expect(hook).to have_attributes(hook_params.except(:url_variables))
expect(hook).to have_attributes(
- url_variables: { 'token' => 'some secret value', 'baz' => 'qux' }
+ url_variables: { 'token' => 'some secret value', 'bar' => 'qux' }
)
end
end