[FIX] purchase: fixed syntax error

bzr revid: qdp-launchpad@openerp.com-20130917114853-h1kmo5bot8u75k9x
This commit is contained in:
Quentin (OpenERP) 2013-09-17 13:48:53 +02:00
parent cf8bdb5c6c
commit 3ac9b8933b
1 changed files with 1 additions and 1 deletions

View File

@ -346,7 +346,7 @@
Assert price on product is still the old price as the out move has not been received fully yet
-
!python {model: product.product}: |
assert round(self.browse(cr, uid, ref("product_fifo_negative")).standard_price) == 70), 'The product price should not have been updated'
assert self.browse(cr, uid, ref("product_fifo_negative")).standard_price == 70, 'The product price should not have been updated'
-
Receive purchase order with 60 kg FIFO Ice Cream at 80 euro/kg
-