summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-05-27 01:57:05 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-05-27 01:57:05 +0000
commit5ed4e3c0eaae8ac52151c704fd9815a4168b0e80 (patch)
treee47db802f12c2be773b43830d571d81f929cea49
parent7d97cd4d5c4474806e77c08ae57ccf14f2de10c1 (diff)
downloadredmine-5ed4e3c0eaae8ac52151c704fd9815a4168b0e80.tar.gz
redmine-5ed4e3c0eaae8ac52151c704fd9815a4168b0e80.zip
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
-rw-r--r--test/functional/gantts_controller_test.rb5
1 files changed, 4 insertions, 1 deletions
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')