aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer
diff options
context:
space:
mode:
authorDalibor Nasevic <dalibor.nasevic@gmail.com>2011-03-06 20:03:06 +0100
committerXavier Noria <fxn@hashref.com>2011-03-07 00:37:45 +0100
commitc528297d17236e57fa4076272547367870158034 (patch)
tree994f3a724178fe709a9f248bff23be7ec5efdc35 /actionmailer
parent3a621e7be4d5f592e04e8ee03435936f9e5f1c36 (diff)
downloadrails-c528297d17236e57fa4076272547367870158034.tar.gz
rails-c528297d17236e57fa4076272547367870158034.tar.bz2
rails-c528297d17236e57fa4076272547367870158034.zip
Fixed indentation in actionmailer base_test [#6538 state:committed]
Signed-off-by: Xavier Noria <fxn@hashref.com>
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 1b793d255e..6a7931da8c 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