mirror of
https://github.com/redmine/redmine.git
synced 2025-11-09 14:56:01 +01:00
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
This commit is contained in:
@@ -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}/
|
||||
|
||||
Reference in New Issue
Block a user