From: Toshi MARUYAMA Date: Sat, 9 Nov 2019 18:17:12 +0000 (+0000) Subject: cleanup: rubocop: fix Layout/AlignArguments in ApplicationHelperTest#test_principals_... X-Git-Tag: 4.1.0~46 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=eb18ef819f77b2e6ca8bb8620a61b16960ce583d;p=redmine.git cleanup: rubocop: fix Layout/AlignArguments in ApplicationHelperTest#test_principals_options_for_select_with_users_and_groups git-svn-id: http://svn.redmine.org/redmine/trunk@19057 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/helpers/application_helper_test.rb b/test/helpers/application_helper_test.rb index 235b7a41a..072c05102 100644 --- a/test/helpers/application_helper_test.rb +++ b/test/helpers/application_helper_test.rb @@ -1726,9 +1726,10 @@ class ApplicationHelperTest < Redmine::HelperTest User.current = nil set_language_if_valid 'en' users = [User.find(2), Group.find(11), User.find(4), Group.find(10)] - assert_equal %() + + assert_equal( + %() + %(), - principals_options_for_select(users) + principals_options_for_select(users)) end def test_principals_options_for_select_with_empty_collection