diff --git a/plone/app/discussion/tests/test_notifications.py b/plone/app/discussion/tests/test_notifications.py index 158e5c4..404ebac 100644 --- a/plone/app/discussion/tests/test_notifications.py +++ b/plone/app/discussion/tests/test_notifications.py @@ -69,7 +69,7 @@ class TestUserNotificationUnit(PloneTestCase): self.conversation.addComment(comment) self.assertEquals(len(self.mailhost.messages), 1) self.failUnless(self.mailhost.messages[0]) - msg = self.mailhost.messages[0] + msg = str(self.mailhost.messages[0]) self.failUnless('To: john@plone.test' in msg) self.failUnless('From: portal@plone.test' in msg)