[IMP] better assert message and cleaning

bzr revid: mat@openerp.com-20140203134051-lgwo4v0rdntgxyor
This commit is contained in:
Martin Trigaux 2014-02-03 14:40:51 +01:00
parent 6ea8851fd0
commit 5f10bec1a0
1 changed files with 1 additions and 2 deletions

View File

@ -285,7 +285,6 @@ class test_base(common.TransactionCase):
def test_60_read_group(self):
cr, uid = self.cr, self.uid
company_id = self.registry("ir.model.data").get_object_reference(cr, uid, "base", "main_company")[1]
for user_data in [
{'name': 'Alice', 'login': 'alice', 'color': 1, 'function': 'Friend'},
{'name': 'Bob', 'login': 'bob', 'color': 2, 'function': 'Friend'},
@ -297,7 +296,7 @@ class test_base(common.TransactionCase):
self.assertEqual(len(groups_data), 2, "Incorrect number of results when grouping on a field")
for group_data in groups_data:
self.assertIn('color', group_data, "Aggregated data for the column 'color' is not present in read_group return values")
self.assertEqual(group_data['color'], 3, "Incorrect sum for aggregated data for the column 'color' not present in read_group return values")
self.assertEqual(group_data['color'], 3, "Incorrect sum for aggregated data for the column 'color'")
class test_partner_recursion(common.TransactionCase):