diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-11-04 14:43:11 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-11-04 14:43:11 +0000 |
commit | 3c95bccac7a763dd1ab815eb4a81e0ec384fa3b9 (patch) | |
tree | 5294571fdaaf57ca9d0a6e7246653f7dc3f2eea2 /test | |
parent | bfdedec0da0379643d90622622428c712cfee90f (diff) | |
download | redmine-3c95bccac7a763dd1ab815eb4a81e0ec384fa3b9.tar.gz redmine-3c95bccac7a763dd1ab815eb4a81e0ec384fa3b9.zip |
add space after comma to test/unit/mailer_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@20243 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/mailer_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/mailer_test.rb b/test/unit/mailer_test.rb index 0e820ce29..85676ca5a 100644 --- a/test/unit/mailer_test.rb +++ b/test/unit/mailer_test.rb @@ -1053,7 +1053,7 @@ class MailerTest < ActiveSupport::TestCase assert_equal ["admin@somenet.foo"], Mailer.email_addresses(User.find(1)) assert_equal ["admin@somenet.foo", "jsmith@somenet.foo"], - Mailer.email_addresses(User.where(:id => [1,2])).sort + Mailer.email_addresses(User.where(:id => [1, 2])).sort end def test_email_addresses_should_include_notified_emails_addresses_only |