From 774ed36746018af94fa07fde95229a63c23ca4d6 Mon Sep 17 00:00:00 2001 From: Patrick Gerken Date: Tue, 8 Mar 2011 20:15:37 +0000 Subject: [PATCH] Ups, there is a nother unicode problem svn path=/plone.app.discussion/trunk/; revision=47990 --- plone/app/discussion/tests/test_notifications.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plone/app/discussion/tests/test_notifications.py b/plone/app/discussion/tests/test_notifications.py index 8efef1c..afd1c81 100644 --- a/plone/app/discussion/tests/test_notifications.py +++ b/plone/app/discussion/tests/test_notifications.py @@ -46,6 +46,9 @@ class TestUserNotificationUnit(PloneTestCase): self.loginAsPortalOwner() self.portal.invokeFactory('Document', 'doc1') self.portal_discussion = self.portal.portal_discussion + # Archetypes content types store data as utf-8 encoded strings + # The missing u in front of a string is therefor not missing + self.portal.doc1.title = 'Kölle Alaaf' # What is "Fasching"? self.conversation = IConversation(self.portal.doc1) def beforeTearDown(self):