aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/mail_helper_test.rb
diff options
context:
space:
mode:
authorMikel Lindsaar <raasdnil@gmail.com>2009-11-20 21:19:10 +1100
committerMikel Lindsaar <raasdnil@gmail.com>2009-11-20 21:19:10 +1100
commita5e6295d72733b0ab4d5cff1003574e98913bae8 (patch)
tree75269fc3f209e28bc4e51579b0011e8449de5ba6 /actionmailer/test/mail_helper_test.rb
parent539d9b355f40b1668b4ad4e8fe628e0a3d9760b8 (diff)
downloadrails-a5e6295d72733b0ab4d5cff1003574e98913bae8.tar.gz
rails-a5e6295d72733b0ab4d5cff1003574e98913bae8.tar.bz2
rails-a5e6295d72733b0ab4d5cff1003574e98913bae8.zip
Down to 30 failures total
Diffstat (limited to 'actionmailer/test/mail_helper_test.rb')
-rw-r--r--actionmailer/test/mail_helper_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/test/mail_helper_test.rb b/actionmailer/test/mail_helper_test.rb
index a5cf789035..b750d21f8a 100644
--- a/actionmailer/test/mail_helper_test.rb
+++ b/actionmailer/test/mail_helper_test.rb
@@ -56,7 +56,7 @@ end
class MailerHelperTest < Test::Unit::TestCase
def new_mail( charset="utf-8" )
mail = Mail.new
- mail.content_type ["text", "plain", { "charset" => charset }]
+ mail.content_type(["text", "plain", { "charset" => charset }])
mail
end