1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-04 22:59:47 +00:00

cleanup: rubocop: fix Layout/ClosingParenthesisIndentation in test/unit/issue_test.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@19205 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2019-11-23 14:28:14 +00:00
parent bd0f849e08
commit 8e3d0354a5

View File

@ -2436,9 +2436,11 @@ class IssueTest < ActiveSupport::TestCase
assert !Issue.new(:due_date => today).overdue?
assert !Issue.new(:due_date => (today + 1.day).to_date).overdue?
assert !Issue.new(:due_date => nil).overdue?
assert !Issue.new(:due_date => (today - 1.day).to_date,
:status => IssueStatus.where(:is_closed => true).first
).overdue?
assert !Issue.
new(
:due_date => (today - 1.day).to_date,
:status => IssueStatus.where(:is_closed => true).first
).overdue?
end
test "#behind_schedule? should be false if the issue has no start_date" do