Fix wrong typo in test

This commit is contained in:
MQuy 2016-12-05 21:47:49 +08:00
parent 2263769c79
commit 36efba0520
1 changed files with 1 additions and 1 deletions

View File

@ -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