aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMQuy <sugiacupit@gmail.com>2016-12-05 21:47:49 +0800
committerMQuy <sugiacupit@gmail.com>2016-12-05 21:47:49 +0800
commit36efba05206aef9e587cb971a67d931cd941b90a (patch)
tree0da8eb4efd13815935fe32417d44e93a071418ba
parent2263769c792a32d02826837ef8df5ae5ad1e3682 (diff)
downloadrails-36efba05206aef9e587cb971a67d931cd941b90a.tar.gz
rails-36efba05206aef9e587cb971a67d931cd941b90a.tar.bz2
rails-36efba05206aef9e587cb971a67d931cd941b90a.zip
Fix wrong typo in test
-rw-r--r--actionmailer/test/base_test.rb2
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