From 5ed4e3c0eaae8ac52151c704fd9815a4168b0e80 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Wed, 27 May 2020 01:57:05 +0000 Subject: [PATCH] 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 --- test/functional/gantts_controller_test.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/functional/gantts_controller_test.rb b/test/functional/gantts_controller_test.rb index a6be637ca..d9c8e1548 100644 --- a/test/functional/gantts_controller_test.rb +++ b/test/functional/gantts_controller_test.rb @@ -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') -- 2.39.5