diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-09 18:17:01 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-09 18:17:01 +0000 |
commit | 6ea5d0c3c63835f1019bfbfaee0672f50ed32985 (patch) | |
tree | 58b146dd0e68a7d0a0d7438115f18e59857c9aeb /test | |
parent | 0d6015be567b91507dba79df111dda98feb4fc8b (diff) | |
download | redmine-6ea5d0c3c63835f1019bfbfaee0672f50ed32985.tar.gz redmine-6ea5d0c3c63835f1019bfbfaee0672f50ed32985.zip |
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
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 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 %(<option value="2">John Smith</option><option value="4" selected="selected">Robert Hill</option>), - principals_options_for_select(users, User.find(4)) + assert_equal( + %(<option value="2">John Smith</option><option value="4" selected="selected">Robert Hill</option>), + principals_options_for_select(users, User.find(4))) end def test_principals_options_for_select_with_users_and_groups |