aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-07-06 23:12:48 -0300
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-07-06 23:12:48 -0300
commit9f5d2b12025958d024cbe5666dfef80b225dde2c (patch)
tree38f33776720b748a5be8a61a12b09678b7f6d7c2 /actionmailer/test
parent3009c63da6eb4cb18a6f90b39562945d299b1c85 (diff)
downloadrails-9f5d2b12025958d024cbe5666dfef80b225dde2c.tar.gz
rails-9f5d2b12025958d024cbe5666dfef80b225dde2c.tar.bz2
rails-9f5d2b12025958d024cbe5666dfef80b225dde2c.zip
Fix failing AM test due to missing template
Diffstat (limited to 'actionmailer/test')
-rw-r--r--actionmailer/test/base_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/test/base_test.rb b/actionmailer/test/base_test.rb
index 9d1b1fda33..4ed332d13d 100644
--- a/actionmailer/test/base_test.rb
+++ b/actionmailer/test/base_test.rb
@@ -659,7 +659,7 @@ class BaseTest < ActiveSupport::TestCase
self.default_options = {from: "robert.pankowecki@gmail.com"}
def welcome
- mail(subject: "subject")
+ mail(subject: "subject", body: "hello world")
end
end