Commit be34c2b8 authored by Jérome Perrin's avatar Jérome Perrin

forge py3

parent 52911f70
......@@ -69,7 +69,7 @@ for to_url in to_url_list:
multipart.add_file(data=attachment_dict['content'],
content_type=attachment_dict['mime_type'],
filename=attachment_dict['name'])
mail_message = str(multipart)
mail_message = bytes(multipart)
# Bug Message not send email it self.
#context.activate(activity='SQLQueue').sendMailHostMessage(mail_message)
......
......@@ -218,7 +218,7 @@ class TestBug(ERP5TypeTestCase):
mfrom, mto, messageText = last_message
self.assertEqual('dummy <loggedperson@localhost>', mfrom)
self.assertEqual(['person1@localhost'], mto)
message = message_from_string(messageText)
message = message_from_string(messageText.decode())
self.assertTrue(decode_header(message['Subject'])[0][0].endswith(bug.getTitle()))
def stepCheckBugMessageNotification(self, sequence=None,
......@@ -232,7 +232,7 @@ class TestBug(ERP5TypeTestCase):
mfrom, mto, messageText = last_message
self.assertEqual('person2@localhost', mfrom)
self.assertEqual(['person1@localhost'], mto)
message = message_from_string(messageText)
message = message_from_string(messageText.decode())
self.assertTrue(decode_header(message['Subject'])[0][0].endswith(bug.getTitle()))
def stepSetSourceProject(self, sequence=None, sequence_list=None, **kw):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment