1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-01 03:57:15 +00:00

fix source indent of GanttsControllerTest#test_gantt_should_export_to_pdf

git-svn-id: http://svn.redmine.org/redmine/trunk@19791 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-05-27 01:57:05 +00:00
parent 7d97cd4d5c
commit 5ed4e3c0ea

View File

@ -146,10 +146,13 @@ class GanttsControllerTest < Redmine::ControllerTest
end
def test_gantt_should_export_to_pdf
get :show, :params => {
get(
:show,
:params => {
:project_id => 1,
:format => 'pdf'
}
)
assert_response :success
assert_equal 'application/pdf', @response.media_type
assert @response.body.starts_with?('%PDF')