aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/old_base/mail_service_test.rb
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-08-14 05:58:34 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2010-08-14 05:58:34 -0300
commit0a2257697019f5eca65d46416ea1fa405ad41021 (patch)
tree9555dd26da7669c4f9b07a1640355d0b505ff696 /actionmailer/test/old_base/mail_service_test.rb
parentb451de0d6de4df6bc66b274cec73b919f823d5ae (diff)
downloadrails-0a2257697019f5eca65d46416ea1fa405ad41021.tar.gz
rails-0a2257697019f5eca65d46416ea1fa405ad41021.tar.bz2
rails-0a2257697019f5eca65d46416ea1fa405ad41021.zip
Fixes some ActionMailer tests
Diffstat (limited to 'actionmailer/test/old_base/mail_service_test.rb')
-rw-r--r--actionmailer/test/old_base/mail_service_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionmailer/test/old_base/mail_service_test.rb b/actionmailer/test/old_base/mail_service_test.rb
index 4c93eb63e2..a216b94a55 100644
--- a/actionmailer/test/old_base/mail_service_test.rb
+++ b/actionmailer/test/old_base/mail_service_test.rb
@@ -392,7 +392,7 @@ class ActionMailerTest < Test::Unit::TestCase
expected = new_mail
expected.to = @recipient
expected.subject = "[Signed up] Welcome #{@recipient}"
- expected.body = "Hello there, \n\nMr. #{@recipient}"
+ expected.body = "Hello there,\n\nMr. #{@recipient}"
expected.from = "system@loudthinking.com"
expected.date = Time.now
@@ -420,7 +420,7 @@ class ActionMailerTest < Test::Unit::TestCase
expected = new_mail
expected.to = @recipient
expected.subject = "[Signed up] Welcome #{@recipient}"
- expected.body = "Hello there, \n\nMr. #{@recipient}"
+ expected.body = "Hello there,\n\nMr. #{@recipient}"
expected.from = "system@loudthinking.com"
expected.date = Time.local(2004, 12, 12)