aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2011-03-06 17:42:42 +0100
committerXavier Noria <fxn@hashref.com>2011-03-06 17:42:42 +0100
commit8bbc5b4f5fd0ccc0b496cbdb2abb07d24b84aaba (patch)
tree6495da43533b6540385c3e73c9ef3700ccf8c11a /actionmailer
parentb99fb66fb75bcc6b42869caa28dc79781a1aa9c7 (diff)
downloadrails-8bbc5b4f5fd0ccc0b496cbdb2abb07d24b84aaba.tar.gz
rails-8bbc5b4f5fd0ccc0b496cbdb2abb07d24b84aaba.tar.bz2
rails-8bbc5b4f5fd0ccc0b496cbdb2abb07d24b84aaba.zip
Revert "Fixed identation in actionmailer base_test"
Please excuse the revert. Albeit the commit is totally innocent, docrails has a strong no-code policy we need to enforce. Please feel free to submit the fix as a patch and assign it to me, I'll apply right away. This reverts commit d8462510c5378f9204778ffb9df4fdbece7dccd0.
Diffstat (limited to 'actionmailer')
-rw-r--r--actionmailer/test/base_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionmailer/test/base_test.rb b/actionmailer/test/base_test.rb
index 6a7931da8c..1b793d255e 100644
--- a/actionmailer/test/base_test.rb
+++ b/actionmailer/test/base_test.rb
@@ -153,8 +153,8 @@ class BaseTest < ActiveSupport::TestCase
assert_equal(2, email.parts.length)
assert_equal("multipart/related", email.mime_type)
assert_equal("multipart/alternative", email.parts[0].mime_type)
- assert_equal("text/plain", email.parts[0].parts[0].mime_type)
- assert_equal("text/html", email.parts[0].parts[1].mime_type)
+ assert_equal("text/plain", email.parts[0].parts[0].mime_type)
+ assert_equal("text/html", email.parts[0].parts[1].mime_type)
assert_equal("logo.png", email.parts[1].filename)
end