Commit 3e864237 authored by Jérome Perrin's avatar Jérome Perrin

use utf8 encoding for this python file

parent 44d9849e
...@@ -653,8 +653,7 @@ class TestERP5Catalog(ERP5TypeTestCase, LogInterceptor): ...@@ -653,8 +653,7 @@ class TestERP5Catalog(ERP5TypeTestCase, LogInterceptor):
def test_19_SearchFolderWithNonAsciiCharacter(self): def test_19_SearchFolderWithNonAsciiCharacter(self):
person_module = self.getPersonModule() person_module = self.getPersonModule()
# Now we will try the same thing as previous test and look at searchFolder title = 'Sébastien'
title='S\xc3\xa9bastien'
person = person_module.newContent(id='5',portal_type='Person',title=title) person = person_module.newContent(id='5',portal_type='Person',title=title)
person.immediateReindexObject() person.immediateReindexObject()
folder_object_list = [x.getObject().getId() for x in person_module.searchFolder()] folder_object_list = [x.getObject().getId() for x in person_module.searchFolder()]
......
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