From: Tom Hughes Date: Thu, 28 Mar 2019 08:45:58 +0000 (+0000) Subject: Expect CORS preflight responses to not have a content type X-Git-Tag: live~2600 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/9e759dc030b67a5a5d9261d59d6716618a64c15d Expect CORS preflight responses to not have a content type https://github.com/cyu/rack-cors/pull/180 --- diff --git a/test/integration/cors_test.rb b/test/integration/cors_test.rb index 9ff7e360e..82e834646 100644 --- a/test/integration/cors_test.rb +++ b/test/integration/cors_test.rb @@ -9,7 +9,7 @@ class CORSTest < ActionDispatch::IntegrationTest assert_response :success assert_equal "*", response.headers["Access-Control-Allow-Origin"] - assert_equal "text/plain", response.content_type + assert_nil response.content_type assert_equal "", response.body end