|
|
@ -208,8 +208,8 @@ class PartnerContactInSeveralCompaniesCase(common.TransactionCase): |
|
|
|
'set_value': True |
|
|
|
}} |
|
|
|
self.partner.unlink(cr, uid, [new_contact_id], context=ctx) |
|
|
|
partner_ids = self.partner.search(cr, uid, |
|
|
|
[('id', 'in', [new_contact_id, self.bob_contact_id])]) |
|
|
|
partner_ids = self.partner.search( |
|
|
|
cr, uid, [('id', 'in', [new_contact_id, self.bob_contact_id])]) |
|
|
|
self.assertIn(self.bob_contact_id, partner_ids) |
|
|
|
self.assertNotIn(new_contact_id, partner_ids) |
|
|
|
|
|
|
|