diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-12-11 14:18:26 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-12-11 14:18:26 +0000 |
commit | 19224b8e85c7182cf3723b4a8be373f73acff6a3 (patch) | |
tree | 7daf8a65d17a435aec471cfe88f17549ba1770c0 | |
parent | ae47da64fc6537dc78c8057bb372a815f160ebb6 (diff) | |
download | redmine-19224b8e85c7182cf3723b4a8be373f73acff6a3.tar.gz redmine-19224b8e85c7182cf3723b4a8be373f73acff6a3.zip |
remove space inside array brackets from test/unit/mailer_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@20629 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | test/unit/mailer_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/mailer_test.rb b/test/unit/mailer_test.rb index 874f05281..7c867e098 100644 --- a/test/unit/mailer_test.rb +++ b/test/unit/mailer_test.rb @@ -622,7 +622,7 @@ class MailerTest < ActiveSupport::TestCase end def test_version_file_added - attachements = [ Attachment.find_by_container_type('Version') ] + attachements = [Attachment.find_by_container_type('Version')] assert Mailer.deliver_attachments_added(attachements) assert_not_nil last_email.bcc assert last_email.bcc.any? @@ -632,7 +632,7 @@ class MailerTest < ActiveSupport::TestCase end def test_project_file_added - attachements = [ Attachment.find_by_container_type('Project') ] + attachements = [Attachment.find_by_container_type('Project')] assert Mailer.deliver_attachments_added(attachements) assert_not_nil last_email.bcc assert last_email.bcc.any? |