diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-09 18:16:50 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-09 18:16:50 +0000 |
commit | 0d6015be567b91507dba79df111dda98feb4fc8b (patch) | |
tree | 8f3c12416e41f09bf6867f1ef11d9fb7ca3c1da0 /test | |
parent | 28ae34b68fd07772e28ca7866d12a7ae9b2bfc14 (diff) | |
download | redmine-0d6015be567b91507dba79df111dda98feb4fc8b.tar.gz redmine-0d6015be567b91507dba79df111dda98feb4fc8b.zip |
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
Diffstat (limited to 'test')
-rw-r--r-- | test/helpers/application_helper_test.rb | 5 |
1 files changed, 3 insertions, 2 deletions
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 %(<option value="2">John Smith</option><option value="4">Robert Hill</option>), - principals_options_for_select(users) + assert_equal( + %(<option value="2">John Smith</option><option value="4">Robert Hill</option>), + principals_options_for_select(users)) end def test_principals_options_for_select_with_selected |