diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 92e4dcb5e..c2a45d7d6 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -158,7 +158,6 @@ Layout/IndentFirstArrayElement: - 'test/functional/repositories_mercurial_controller_test.rb' - 'test/unit/lib/redmine/scm/adapters/git_adapter_test.rb' - 'test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb' - - 'test/unit/version_test.rb' # Cop supports --auto-correct. # Configuration parameters: EnforcedStyle, IndentationWidth. diff --git a/test/unit/version_test.rb b/test/unit/version_test.rb index 4d90839a6..a467a09db 100644 --- a/test/unit/version_test.rb +++ b/test/unit/version_test.rb @@ -319,10 +319,16 @@ class VersionTest < ActiveSupport::TestCase ) assert_equal 'value1', version.custom_field_value(cf1) assert_nil version.custom_field_value(cf2) - version.send :safe_attributes=, {'custom_fields' => [ - {'id' => cf1.id.to_s, 'value' => 'valuea'}, - {'id' => cf2.id.to_s, 'value' => 'valueb'} - ]}, user + version.send( + :safe_attributes=, + {'custom_fields' => + [ + {'id' => cf1.id.to_s, 'value' => 'valuea'}, + {'id' => cf2.id.to_s, 'value' => 'valueb'} + ] + }, + user + ) assert_equal 'valuea', version.custom_field_value(cf1) assert_nil version.custom_field_value(cf2) end