Fixed indentation in actionmailer base_test [#6538 state:committed]

Signed-off-by: Xavier Noria <fxn@hashref.com>
This commit is contained in:
Dalibor Nasevic 2011-03-06 20:03:06 +01:00 committed by Xavier Noria
parent 3a621e7be4
commit c528297d17
1 changed files with 2 additions and 2 deletions

View File

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