aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/mail_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionmailer/test/mail_test.rb')
-rw-r--r--actionmailer/test/mail_test.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/actionmailer/test/mail_test.rb b/actionmailer/test/mail_test.rb
index ea6f25d157..f18dfdc156 100644
--- a/actionmailer/test/mail_test.rb
+++ b/actionmailer/test/mail_test.rb
@@ -8,7 +8,6 @@ class MailTest < Test::Unit::TestCase
quoted_body = [expected].pack('*M')
m.body = quoted_body
assert_equal "something_with_underscores=\r\n", m.body.encoded
- # CHANGED: body returns object, not string, Changed m.body to m.body.to_s
assert_equal expected, m.body.to_s
end
@@ -20,5 +19,4 @@ class MailTest < Test::Unit::TestCase
assert_equal 1902, mail.attachments.first.decoded.length
assert_equal "application/pkcs7-signature", mail.attachments.last.mime_type
end
-
end