mirror of
				https://github.com/redmine/redmine.git
				synced 2025-10-31 02:15:52 +01:00 
			
		
		
		
	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:
		| @@ -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' | ||||
|   | ||||
| @@ -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 | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user