From: Toshi MARUYAMA Date: Sat, 23 Nov 2019 09:04:05 +0000 (+0000) Subject: cleanup: rubocop: fix Layout/ClosingParenthesisIndentation in test/unit/lib/redmine... X-Git-Tag: 4.2.0~1452 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c410293b3cc4283ccfa92ab7b7670758e9da3aaf;p=redmine.git cleanup: rubocop: fix Layout/ClosingParenthesisIndentation in test/unit/lib/redmine/helpers/gantt_test.rb git-svn-id: http://svn.redmine.org/redmine/trunk@19188 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/unit/lib/redmine/helpers/gantt_test.rb b/test/unit/lib/redmine/helpers/gantt_test.rb index f2cad87c8..a09bcf470 100644 --- a/test/unit/lib/redmine/helpers/gantt_test.rb +++ b/test/unit/lib/redmine/helpers/gantt_test.rb @@ -188,19 +188,19 @@ class Redmine::Helpers::GanttHelperTest < Redmine::HelperTest :parent_issue_id => @issue.id, :start_date => (today - 1), :due_date => (today + 2)) - ) + ) @child2 = Issue.generate!( attrs.merge(:subject => 'child2', :parent_issue_id => @issue.id, :start_date => today, :due_date => (today + 7)) - ) + ) @grandchild = Issue.generate!( attrs.merge(:subject => 'grandchild', :parent_issue_id => @child1.id, :start_date => (today - 1), :due_date => (today + 2)) - ) + ) @output_buffer = @gantt.subjects # parent task 44px assert_select 'div.issue-subject[style*="left:44px"]', /#{@issue.subject}/