Merge pull request #72 from vauxoo-dev/8.0-fix_break_before_binary_operator

[FIX] Break before binary operator fixed
This commit is contained in:
Pedro M. Baeza
2016-01-19 13:19:05 +01:00

View File

@@ -97,9 +97,9 @@ class TestCrmRmaAdvanceWarranty(TransactionCase):
for line_id in claim_id.claim_line_ids:
# warranty return address values
self.assertTrue(line_id.warranty_return_partner
and line_id.warranty_type
and line_id.location_dest_id)
self.assertTrue(line_id.warranty_return_partner and
line_id.warranty_type and
line_id.location_dest_id)
# warranty limit values
self.assertTrue(line_id.guarantee_limit
and line_id.set_warranty_limit)
self.assertTrue(line_id.guarantee_limit and
line_id.set_warranty_limit)