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
This commit is contained in:
Toshi MARUYAMA
2020-11-04 14:43:11 +00:00
parent bfdedec0da
commit 3c95bccac7

View File

@@ -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