Fix non py3-compatible test in CI
This commit is contained in:
parent
5d978e89ea
commit
fc16b3fedf
1 changed files with 1 additions and 1 deletions
|
@ -375,4 +375,4 @@ class LongTermClipperTests(CASTestCase):
|
||||||
for uid in uids:
|
for uid in uids:
|
||||||
with self.assertRaises(ValueError) as cm:
|
with self.assertRaises(ValueError) as cm:
|
||||||
get_ldap_infos(uid)
|
get_ldap_infos(uid)
|
||||||
self.assertIn(uid, cm.exception.message)
|
self.assertIn(uid, str(cm.exception))
|
||||||
|
|
Loading…
Reference in a new issue