diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-05-27 01:56:36 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-05-27 01:56:36 +0000 |
commit | 407f83a77512ae2db5fa1bf96f36d72b38639648 (patch) | |
tree | 190cd489233f02d742657c15230ade2747426400 /test/functional/gantts_controller_test.rb | |
parent | f0fdf13d1bbf6bedfb3d5828a1f13ed2144006da (diff) | |
download | redmine-407f83a77512ae2db5fa1bf96f36d72b38639648.tar.gz redmine-407f83a77512ae2db5fa1bf96f36d72b38639648.zip |
fix source indent of GanttsControllerTest#test_gantt_should_work
git-svn-id: http://svn.redmine.org/redmine/trunk@19789 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/gantts_controller_test.rb')
-rw-r--r-- | test/functional/gantts_controller_test.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/functional/gantts_controller_test.rb b/test/functional/gantts_controller_test.rb index e1f9be8fa..9b86a8734 100644 --- a/test/functional/gantts_controller_test.rb +++ b/test/functional/gantts_controller_test.rb @@ -34,9 +34,12 @@ class GanttsControllerTest < Redmine::ControllerTest i2 = Issue.find(2) i2.update_attribute(:due_date, 1.month.from_now) with_settings :gravatar_enabled => '1' do - get :show, :params => { + get( + :show, + :params => { :project_id => 1 } + ) end assert_response :success |