diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 82c105443..d24b0ad69 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -156,7 +156,6 @@ Layout/IndentFirstArrayElement: - 'lib/redmine/wiki_formatting/textile/redcloth3.rb' - 'test/functional/auth_sources_controller_test.rb' - 'test/functional/repositories_mercurial_controller_test.rb' - - 'test/functional/settings_controller_test.rb' - 'test/helpers/activities_helper_test.rb' - 'test/helpers/issues_helper_test.rb' - 'test/unit/issue_test.rb' diff --git a/test/functional/settings_controller_test.rb b/test/functional/settings_controller_test.rb index faf5f2aae..56eedc283 100644 --- a/test/functional/settings_controller_test.rb +++ b/test/functional/settings_controller_test.rb @@ -141,10 +141,14 @@ class SettingsControllerTest < Redmine::ControllerTest } } assert_redirected_to '/settings' - assert_equal([ - {"keywords" => "resolves", "status_id" => "3"}, - {"keywords" => "closes", "status_id" => "5", "done_ratio" => "100", "if_tracker_id" => "2"} - ], Setting.commit_update_keywords) + assert_equal( + [ + {"keywords" => "resolves", "status_id" => "3"}, + {"keywords" => "closes", "status_id" => "5", + "done_ratio" => "100", "if_tracker_id" => "2"} + ], + Setting.commit_update_keywords + ) end def test_post_edit_with_invalid_setting_should_not_error