[IMP] contract: Don't depend on external data

The test as it was, leaves to the demo pricelist the control on the price of
the product, so other modules that modifies this pricelist will make the
test to fail.

This is the minimum change needed for avoiding the problem.
This commit is contained in:
Pedro M. Baeza
2018-09-29 12:22:29 +02:00
committed by Jean-Charles Drubay
parent 09eff3a662
commit 72ba1fa9d6

View File

@@ -24,6 +24,13 @@ class TestContractBase(common.SavepointCase):
cls.template = cls.env['account.analytic.contract'].create(
cls.template_vals,
)
# For being sure of the applied price
cls.env['product.pricelist.item'].create({
'pricelist_id': cls.partner.property_product_pricelist.id,
'product_id': cls.product.id,
'compute_price': 'formula',
'base': 'list_price',
})
cls.contract = cls.env['account.analytic.account'].create({
'name': 'Test Contract',
'partner_id': cls.partner.id,