Maintainers
This module is maintained by the OCA.
-

OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.
diff --git a/stock_picking_report_custom_description/tests/test_stock_picking_report_custom_description.py b/stock_picking_report_custom_description/tests/test_stock_picking_report_custom_description.py index 84981cf80..2674f9929 100644 --- a/stock_picking_report_custom_description/tests/test_stock_picking_report_custom_description.py +++ b/stock_picking_report_custom_description/tests/test_stock_picking_report_custom_description.py @@ -22,3 +22,8 @@ def setUpClass(cls): def test_so_custom_description_transfer_to_picking(self): self.order.action_confirm() self.assertEqual(self.order.order_line.move_ids.name, "Custom description") + self.order.order_line.name = "Custom description 2" + self.assertEqual( + self.order.order_line.move_ids.name, + "Custom description 2", + )