From c410293b3cc4283ccfa92ab7b7670758e9da3aaf Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Sat, 23 Nov 2019 09:04:05 +0000 Subject: [PATCH] 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 --- test/unit/lib/redmine/helpers/gantt_test.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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}/ -- 2.39.5