From c2d280002e421e7c9bea876406a1383f3793fbcc Mon Sep 17 00:00:00 2001 From: "stefan@therp.nl" Date: Wed, 19 Mar 2014 08:12:53 +0000 Subject: [PATCH] [FIX] Update mrp test with fix for lp:1250053 https://launchpad.net/bugs/1292358 --- addons/mrp/test/bom_with_service_type_product.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/mrp/test/bom_with_service_type_product.yml b/addons/mrp/test/bom_with_service_type_product.yml index dc434cabf7364..20fdde6894eca 100644 --- a/addons/mrp/test/bom_with_service_type_product.yml +++ b/addons/mrp/test/bom_with_service_type_product.yml @@ -40,7 +40,7 @@ - !python {model: mrp.production}: | order = self.browse(cr, uid, ref("mrp_production_servicetype_mo1")) - assert order.state == 'confirmed', "Production order should be confirmed." + assert order.state == 'ready', "Production order should be ready." for move_line in order.move_lines: move_line.action_consume(move_line.product_qty) -