diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-07-12 11:35:43 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-07-12 11:35:43 +0000 |
commit | adf7facc8af8cb457426e5e6c95e259a4b5e7009 (patch) | |
tree | 1dbfe8397aa0551dadf8fae7c83153924fdba057 /test | |
parent | ee120074eaa43b4549746672f21446ab55806f84 (diff) | |
download | redmine-adf7facc8af8cb457426e5e6c95e259a4b5e7009.tar.gz redmine-adf7facc8af8cb457426e5e6c95e259a4b5e7009.zip |
remove spaces inside {} of ApplicationHelperTest#test_principals_check_box_tag_without_avatar
git-svn-id: http://svn.redmine.org/redmine/trunk@19895 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/helpers/application_helper_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helpers/application_helper_test.rb b/test/helpers/application_helper_test.rb index 516f3436c..04121c4d0 100644 --- a/test/helpers/application_helper_test.rb +++ b/test/helpers/application_helper_test.rb @@ -1716,7 +1716,7 @@ class ApplicationHelperTest < Redmine::HelperTest def test_principals_check_box_tag_without_avatar principals = [User.find(1), Group.find(10)] Setting.gravatar_enabled = '1' - avatar_tags = principals.collect{|p| avatar(p, :size => 16) } + avatar_tags = principals.collect{|p| avatar(p, :size => 16)} with_settings :gravatar_enabled => '0' do tags = principals_check_box_tags(name, principals) |