# HG changeset patch # User RĂ©mi Cardona # Date 1448297266 -3600 # Node ID ac64eeddd50ab8f52df408fb281ced0375ecf895 # Parent c8c6ad8adbdb73246de29ac2da889e8fbe6e08ce [test] Add missing u'' Test actually works in py3k, but not in python 2... That has to be a first! diff -r c8c6ad8adbdb -r ac64eeddd50a test/unittest_predicates.py --- a/test/unittest_predicates.py Wed Apr 22 16:09:04 2015 +0200 +++ b/test/unittest_predicates.py Mon Nov 23 17:47:46 2015 +0100 @@ -497,7 +497,7 @@ def setup_database(self): with self.admin_access.repo_cnx() as cnx: for i in range(30): - cnx.create_entity('CWGroup', name="group%d" % i) + cnx.create_entity('CWGroup', name=u"group%d" % i) cnx.commit() def test_paginated_rset(self):