aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/mail_helper_test.rb
diff options
context:
space:
mode:
authorMikel Lindsaar <raasdnil@gmail.com>2009-11-12 16:08:50 +1100
committerMikel Lindsaar <raasdnil@gmail.com>2009-11-12 16:08:50 +1100
commit15d7cac282e29f0a8e7b38dade07abb32d97a991 (patch)
tree573d27da4f642b2b16840fbc7621d85acd8634ea /actionmailer/test/mail_helper_test.rb
parentcbded53671bccccbaf7e9fdfa93ef86cb097daa3 (diff)
downloadrails-15d7cac282e29f0a8e7b38dade07abb32d97a991.tar.gz
rails-15d7cac282e29f0a8e7b38dade07abb32d97a991.tar.bz2
rails-15d7cac282e29f0a8e7b38dade07abb32d97a991.zip
Starting again on actionmailer integration with mail
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 f8b002e0a7..7b0716048f 100644
--- a/actionmailer/test/mail_helper_test.rb
+++ b/actionmailer/test/mail_helper_test.rb
@@ -55,7 +55,7 @@ end
class MailerHelperTest < Test::Unit::TestCase
def new_mail( charset="utf-8" )
- mail = TMail::Mail.new
+ mail = Mail.new
mail.set_content_type "text", "plain", { "charset" => charset } if charset
mail
end