diff -r baed516c6f6e -r e4f11ef1face cubicweb/test/unittest_schema.py --- a/cubicweb/test/unittest_schema.py Fri Jun 10 16:45:20 2016 +0200 +++ b/cubicweb/test/unittest_schema.py Thu Jun 16 15:53:01 2016 +0200 @@ -178,7 +178,7 @@ self.assertListEqual(sorted(expected_entities), entities) relations = sorted([str(r) for r in schema.relations()]) expected_relations = ['actionnaire', 'add_permission', 'address', 'alias', 'allowed_transition', 'associe', - 'bookmarked_by', 'by_transition', + 'bookmarked_by', 'by_transition', 'buddies', 'cardinality', 'comment', 'comment_format', 'composite', 'condition', 'config', 'connait', @@ -225,7 +225,7 @@ eschema = schema.eschema('CWUser') rels = sorted(str(r) for r in eschema.subject_relations()) - self.assertListEqual(rels, ['created_by', 'creation_date', 'custom_workflow', + self.assertListEqual(rels, ['buddies', 'created_by', 'creation_date', 'custom_workflow', 'cw_source', 'cwuri', 'eid', 'evaluee', 'firstname', 'has_group_permission', 'has_text', 'identity', @@ -235,7 +235,7 @@ 'primary_email', 'surname', 'upassword', 'use_email']) rels = sorted(r.type for r in eschema.object_relations()) - self.assertListEqual(rels, ['bookmarked_by', 'created_by', 'for_user', + self.assertListEqual(rels, ['bookmarked_by', 'buddies', 'created_by', 'for_user', 'identity', 'owned_by', 'wf_info_for']) rschema = schema.rschema('relation_type') properties = rschema.rdef('CWAttribute', 'CWRType')