From cb34338c5ba96b2a3c88375e4943b597c71a64cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9rome=20Perrin?= <jerome@nexedi.com> Date: Mon, 22 Dec 2008 10:57:09 +0000 Subject: [PATCH] fix some docstrings git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@24959 20353a03-c40f-0410-a6d1-a30d3c3de9de --- product/ERP5/tests/testPackingList.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/product/ERP5/tests/testPackingList.py b/product/ERP5/tests/testPackingList.py index 56a8356596..4db976a899 100644 --- a/product/ERP5/tests/testPackingList.py +++ b/product/ERP5/tests/testPackingList.py @@ -729,7 +729,7 @@ class TestPackingListMixin(TestOrderMixin): def stepAddPackingListContainerLine(self,sequence=None, sequence_list=None, **kw): """ - Check if simulation movement are disconnected + Add a container line in the packing list """ container = sequence.get('container') container_line = container.newContent(portal_type=self.container_line_portal_type) @@ -739,7 +739,8 @@ class TestPackingListMixin(TestOrderMixin): def stepSetContainerLineSmallQuantity(self,sequence=None, sequence_list=None, **kw): """ - Check if simulation movement are disconnected + Set a small quantity on the container line, it should not be enough for + the packing list to be packed. """ container_line = sequence.get('container_line') container_line.edit(quantity=self.default_quantity-1) @@ -747,7 +748,7 @@ class TestPackingListMixin(TestOrderMixin): def stepSetContainerLineFullQuantity(self,sequence=None, sequence_list=None, quantity=None,**kw): """ - Check if simulation movement are disconnected + Set the full quantity """ container_line = sequence.get('container_line') if quantity is None: -- 2.30.9