Compatibilite des tests en py2
This commit is contained in:
parent
6a79b02fa8
commit
a812a43a2c
1 changed files with 3 additions and 1 deletions
|
@ -166,13 +166,15 @@ class LongTermClipperTests(CASTestCase):
|
|||
def _setup_ldap(self, promo=12, username="test"):
|
||||
try:
|
||||
buid = six.binary_type(username, 'utf-8')
|
||||
home = six.binary_type('/users/%d/phy/test/' % promo, 'utf-8')
|
||||
except TypeError:
|
||||
buid = six.binary_type(username)
|
||||
home = six.binary_type('/users/%d/phy/test/' % promo)
|
||||
_mock_ldap.directory['dc=spi,dc=ens,dc=fr'] = {
|
||||
'uid': [buid],
|
||||
'cn': [b'John Smith'],
|
||||
'mailRoutingAddress': [b'test@clipper.ens.fr'],
|
||||
'homeDirectory': [bytes('/users/%d/phy/test/' % promo)],
|
||||
'homeDirectory': [home],
|
||||
}
|
||||
|
||||
def _count_ldap_queries(self):
|
||||
|
|
Loading…
Reference in a new issue