From: Toshi MARUYAMA Date: Sat, 9 Nov 2019 18:17:01 +0000 (+0000) Subject: cleanup: rubocop: fix Layout/AlignArguments in ApplicationHelperTest#test_principals_... X-Git-Tag: 4.1.0~47 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6ea5d0c3c63835f1019bfbfaee0672f50ed32985;p=redmine.git cleanup: rubocop: fix Layout/AlignArguments in ApplicationHelperTest#test_principals_options_for_select_with_selected git-svn-id: http://svn.redmine.org/redmine/trunk@19056 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/helpers/application_helper_test.rb b/test/helpers/application_helper_test.rb index 026d2ab1a..235b7a41a 100644 --- a/test/helpers/application_helper_test.rb +++ b/test/helpers/application_helper_test.rb @@ -1717,8 +1717,9 @@ class ApplicationHelperTest < Redmine::HelperTest def test_principals_options_for_select_with_selected User.current = nil users = [User.find(2), User.find(4)] - assert_equal %(), - principals_options_for_select(users, User.find(4)) + assert_equal( + %(), + principals_options_for_select(users, User.find(4))) end def test_principals_options_for_select_with_users_and_groups