From 167f250d98a9a7e5895176b134d337c0a34560f1 Mon Sep 17 00:00:00 2001 From: kennyj Date: Wed, 29 Aug 2012 01:57:44 +0900 Subject: [PATCH] Fixes warnings when executing rake test in ActionMailer. Related to 582a7f459990487659886b90e54c22e055c65870 --- actionmailer/lib/action_mailer/base.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb index 900da9697e4ad..f5c325179f3dc 100644 --- a/actionmailer/lib/action_mailer/base.rb +++ b/actionmailer/lib/action_mailer/base.rb @@ -756,7 +756,7 @@ def collect_responses_and_parts_order(headers) #:nodoc: responses << { :body => render(:template => template), - :content_type => template.mime_type.to_s + :content_type => template.type.to_s } end end