summaryrefslogtreecommitdiffstats
path: root/test/functional/gantts_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/gantts_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/gantts_controller_test.rb')
-rw-r--r--test/functional/gantts_controller_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/gantts_controller_test.rb b/test/functional/gantts_controller_test.rb
index 2042ecf88..606d5765e 100644
--- a/test/functional/gantts_controller_test.rb
+++ b/test/functional/gantts_controller_test.rb
@@ -142,7 +142,7 @@ class GanttsControllerTest < Redmine::ControllerTest
:format => 'pdf'
}
assert_response :success
- assert_equal 'application/pdf', @response.content_type
+ assert_equal 'application/pdf', @response.media_type
assert @response.body.starts_with?('%PDF')
end
@@ -151,7 +151,7 @@ class GanttsControllerTest < Redmine::ControllerTest
:format => 'pdf'
}
assert_response :success
- assert_equal 'application/pdf', @response.content_type
+ assert_equal 'application/pdf', @response.media_type
assert @response.body.starts_with?('%PDF')
end
@@ -162,7 +162,7 @@ class GanttsControllerTest < Redmine::ControllerTest
:format => 'png'
}
assert_response :success
- assert_equal 'image/png', @response.content_type
+ assert_equal 'image/png', @response.media_type
end
end