From 857c009dbaed99da559e9733d5575264dd4b46c9 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Sat, 23 Nov 2019 15:10:47 +0000 Subject: [PATCH] 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 --- .rubocop_todo.yml | 1 - test/unit/changeset_test.rb | 12 ++++++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 8e9097404..af6042e3d 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -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' diff --git a/test/unit/changeset_test.rb b/test/unit/changeset_test.rb index 3c44b5878..74c001cdb 100644 --- a/test/unit/changeset_test.rb +++ b/test/unit/changeset_test.rb @@ -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 -- 2.39.5