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