X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/8c513beec6b15fc3a61a05e4ed868b23c5f94be8..e68d4efc3cdf02f35144e3967be998aaa633a3de:/test/integration/cors_test.rb?ds=sidebyside diff --git a/test/integration/cors_test.rb b/test/integration/cors_test.rb index 9ff7e360e..c35f73d34 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.media_type assert_equal "", response.body end @@ -21,7 +21,7 @@ class CORSTest < ActionDispatch::IntegrationTest assert_response :success assert_nil response.headers["Access-Control-Allow-Origin"] - assert_nil response.content_type + assert_nil response.media_type assert_equal "", response.body end end