From 45eadceea6baa199a0ae0c1d975479f4c48526c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Wed, 14 Nov 2012 14:34:38 +0100 Subject: [PATCH] [FIX] email_template: udpated test according to new specs of append_content_to_html. bzr revid: tde@openerp.com-20121114133438-8m1q0r02i4xory0e --- addons/email_template/tests/test_mail.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/email_template/tests/test_mail.py b/addons/email_template/tests/test_mail.py index 00dd6dc8727..7c69295ce9f 100644 --- a/addons/email_template/tests/test_mail.py +++ b/addons/email_template/tests/test_mail.py @@ -52,8 +52,8 @@ class test_message_compose(test_mail_mockup.TestMailMockups): # Mail data _subject1 = 'Pigs' _subject2 = 'Bird' - _body_html1 = 'Fans of Pigs, unite !\n
Admin
\n' - _body_html2 = 'I am angry !\n
Admin
\n' + _body_html1 = 'Fans of Pigs, unite !\n

Admin

\n' + _body_html2 = 'I am angry !\n

Admin

\n' _attachments = [ {'name': 'First', 'datas_fname': 'first.txt', 'datas': base64.b64encode('My first attachment')}, {'name': 'Second', 'datas_fname': 'second.txt', 'datas': base64.b64encode('My second attachment')}