From 9e27972181aad1a1d40b000e46292e5143ed7b54 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Thu, 1 Apr 2021 15:06:45 +0000 Subject: [PATCH] Use media_type to get the MIME type of the request (#29914). Patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@20890 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/integration/api_test/projects_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/api_test/projects_test.rb b/test/integration/api_test/projects_test.rb index 5d9602c74..59b10efc3 100644 --- a/test/integration/api_test/projects_test.rb +++ b/test/integration/api_test/projects_test.rb @@ -172,7 +172,7 @@ class Redmine::ApiTest::ProjectsTest < Redmine::ApiTest::Base get '/projects/1.xml?include=trackers', :headers => credentials(user.login) assert_response :success - assert_equal 'application/xml', @response.content_type + assert_equal 'application/xml', @response.media_type assert_select 'trackers[type=array]' do assert_select 'tracker[id="1"]', :count => 1 -- 2.39.5