aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/subscriber_test.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-01-26 19:15:20 +0100
committerJosé Valim <jose.valim@gmail.com>2010-01-26 19:15:32 +0100
commitaf43674c1cc73630736537a73e79a24ac2bef995 (patch)
treea012a938a47edac1ca987024dce2c79224359875 /actionmailer/test/subscriber_test.rb
parentbdc39fad3629f89f552e40d13b7612db15ffa552 (diff)
downloadrails-af43674c1cc73630736537a73e79a24ac2bef995.tar.gz
rails-af43674c1cc73630736537a73e79a24ac2bef995.tar.bz2
rails-af43674c1cc73630736537a73e79a24ac2bef995.zip
Fix failing tests on AM about render(:body => Hash).
Diffstat (limited to 'actionmailer/test/subscriber_test.rb')
-rw-r--r--actionmailer/test/subscriber_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/test/subscriber_test.rb b/actionmailer/test/subscriber_test.rb
index 6c347b8392..3d1736d64f 100644
--- a/actionmailer/test/subscriber_test.rb
+++ b/actionmailer/test/subscriber_test.rb
@@ -11,7 +11,7 @@ class AMSubscriberTest < ActionMailer::TestCase
recipients "somewhere@example.com"
subject "basic"
from "basic@example.com"
- render :text => "Hello world"
+ body "Hello world"
end
def receive(mail)