X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/df9e166a5ffc4aa79658bec1a5d552a3b413f0d8..948c4e583b89e28730f8a0d2ae3f94e459351b30:/services/api/test/integration/cross_origin_test.rb diff --git a/services/api/test/integration/cross_origin_test.rb b/services/api/test/integration/cross_origin_test.rb index ebe7ce7a67..ee2f699339 100644 --- a/services/api/test/integration/cross_origin_test.rb +++ b/services/api/test/integration/cross_origin_test.rb @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require 'test_helper' class CrossOriginTest < ActionDispatch::IntegrationTest @@ -65,12 +69,12 @@ class CrossOriginTest < ActionDispatch::IntegrationTest %w(GET HEAD POST PUT DELETE).each do |m| assert_includes allowed, m, "A-C-A-Methods should include #{m}" end - assert_equal 'Authorization', response.headers['Access-Control-Allow-Headers'] + assert_equal 'Authorization, Content-Type', response.headers['Access-Control-Allow-Headers'] end def assert_no_cors_headers response.headers.keys.each do |h| - assert_no_match /^Access-Control-/i, h + assert_no_match(/^Access-Control-/i, h) end end end