summaryrefslogtreecommitdiffstats
path: root/test/functional/projects_controller_test.rb
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2020-01-27 03:54:25 +0000
committerGo MAEDA <maeda@farend.jp>2020-01-27 03:54:25 +0000
commitf37ed7766572550bd563632f69ad940717fa9b90 (patch)
tree6ca7069360504e61396f2c95d458853ff4c8fa39 /test/functional/projects_controller_test.rb
parentd168df5c822f305cb510d072144c39f205b1bd3d (diff)
downloadredmine-f37ed7766572550bd563632f69ad940717fa9b90.tar.gz
redmine-f37ed7766572550bd563632f69ad940717fa9b90.zip
Use #media_type instead of #content_type to test the MIME type of a response (#32886).
Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@19467 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/projects_controller_test.rb')
-rw-r--r--test/functional/projects_controller_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/projects_controller_test.rb b/test/functional/projects_controller_test.rb
index 89bfacee6..786bcebba 100644
--- a/test/functional/projects_controller_test.rb
+++ b/test/functional/projects_controller_test.rb
@@ -240,7 +240,7 @@ class ProjectsControllerTest < Redmine::ControllerTest
:xhr => true
)
assert_response :success
- assert_equal 'text/javascript', response.content_type
+ assert_equal 'text/javascript', response.media_type
end
def test_autocomplete_js_with_blank_search_term
@@ -253,7 +253,7 @@ class ProjectsControllerTest < Redmine::ControllerTest
:xhr => true
)
assert_response :success
- assert_equal 'text/javascript', response.content_type
+ assert_equal 'text/javascript', response.media_type
end
test "#index by non-admin user with view_time_entries permission should show overall spent time link" do