cleanup: rubocop: fix Layout/AlignArguments in test/unit/changeset_test.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@19210 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2019-11-23 15:10:47 +00:00
parent 56d48d7eef
commit 857c009dba
2 changed files with 8 additions and 5 deletions

View File

@@ -20,7 +20,6 @@ Layout/AlignArguments:
- 'test/integration/api_test/projects_test.rb'
- 'test/integration/api_test/wiki_pages_test.rb'
- 'test/test_helper.rb'
- 'test/unit/changeset_test.rb'
- 'test/unit/lib/redmine/wiki_formatting/markdown_formatter_test.rb'
- 'test/unit/lib/redmine/wiki_formatting/markdown_html_parser_test.rb'
- 'test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb'

View File

@@ -108,12 +108,16 @@ class ChangesetTest < ActiveSupport::TestCase
assert_equal 1, time.issue_id
assert_equal 1, time.project_id
assert_equal 2, time.user_id
assert_equal expected_hours, time.hours,
"@#{syntax} should be logged as #{expected_hours} hours but was #{time.hours}"
assert_equal(
expected_hours, time.hours,
"@#{syntax} should be logged as #{expected_hours} hours but was #{time.hours}"
)
assert_equal Date.yesterday, time.spent_on
assert time.activity.is_default?
assert time.comments.include?('r520'),
"r520 was expected in time_entry comments: #{time.comments}"
assert(
time.comments.include?('r520'),
"r520 was expected in time_entry comments: #{time.comments}"
)
end
end