diff options
Diffstat (limited to 'actionmailer')
-rw-r--r-- | actionmailer/test/base_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/test/base_test.rb b/actionmailer/test/base_test.rb index 76f558a961..d757840559 100644 --- a/actionmailer/test/base_test.rb +++ b/actionmailer/test/base_test.rb @@ -140,7 +140,7 @@ class BaseTest < ActiveSupport::TestCase assert_equal("multipart/mixed", email.mime_type) end - test "set mime type to text/html when attachment is inclued and body is set" do + test "set mime type to text/html when attachment is included and body is set" do email = BaseMailer.attachment_with_content(body: "Hello there", content_type: "text/html") assert_equal("text/html", email.mime_type) end |