diff options
author | Go MAEDA <maeda@farend.jp> | 2020-01-27 03:54:25 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2020-01-27 03:54:25 +0000 |
commit | f37ed7766572550bd563632f69ad940717fa9b90 (patch) | |
tree | 6ca7069360504e61396f2c95d458853ff4c8fa39 /test/functional/messages_controller_test.rb | |
parent | d168df5c822f305cb510d072144c39f205b1bd3d (diff) | |
download | redmine-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/messages_controller_test.rb')
-rw-r--r-- | test/functional/messages_controller_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/messages_controller_test.rb b/test/functional/messages_controller_test.rb index ad193b119..46e2c6c61 100644 --- a/test/functional/messages_controller_test.rb +++ b/test/functional/messages_controller_test.rb @@ -266,7 +266,7 @@ class MessagesControllerTest < Redmine::ControllerTest }, :xhr => true assert_response :success - assert_equal 'text/javascript', response.content_type + assert_equal 'text/javascript', response.media_type assert_include 'RE: First post', response.body assert_include "Redmine Admin wrote:", response.body @@ -281,7 +281,7 @@ class MessagesControllerTest < Redmine::ControllerTest }, :xhr => true assert_response :success - assert_equal 'text/javascript', response.content_type + assert_equal 'text/javascript', response.media_type assert_include 'RE: First post', response.body assert_include 'John Smith wrote in message#3:', response.body |