[FIX] pep8

pull/470/head
Stéphane Bidoul (ACSONE) 2016-12-26 14:55:56 +01:00 committed by Andrea
parent 39ac1c5477
commit c4e6a779a0
2 changed files with 5 additions and 4 deletions

View File

@ -28,4 +28,3 @@ class MailMessage(models.Model):
# Needaction only for recipients
self.needaction_partner_ids = [(6, 0, self.partner_ids.ids)]
return res

View File

@ -36,7 +36,8 @@ class TestMailOptionalFollowernotifications(common.TransactionCase):
self.assertEqual(len(res.ids), 1)
message = self.env['mail.message']
for record in res:
if record.notification_ids.mapped('res_partner_id').ids == [self.partner_03.id] and\
if record.notification_ids.mapped('res_partner_id').ids == \
[self.partner_03.id] and \
record.partner_ids.ids == [self.partner_03.id]:
message += record
self.assertEqual(len(message.ids), 0)
@ -49,7 +50,8 @@ class TestMailOptionalFollowernotifications(common.TransactionCase):
('res_id', '=', self.partner_01.id)])
message = self.env['mail.message']
for record in res:
if record.notification_ids.mapped('res_partner_id').ids == [self.partner_03.id] and\
if record.notification_ids.mapped('res_partner_id').ids == \
[self.partner_03.id] and\
record.partner_ids.ids == [self.partner_03.id]:
message += record
self.assertEqual(len(message.ids), 1)