changeset df2d180aecaf in modules/stock_shipment_cost:default
details:
https://hg.tryton.org/modules/stock_shipment_cost?cmd=changeset&node=df2d180aecaf
description:
Use start and stop methods of patch in scenario
This ensure that the modification on the object are removed at the end
of the
scenario.
issue10422
review332891002
diffstat:
tests/scenario_stock_shipment_cost.rst | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diffs (17 lines):
diff -r 7ffa4cd6ff5b -r df2d180aecaf tests/scenario_stock_shipment_cost.rst
--- a/tests/scenario_stock_shipment_cost.rst Mon May 03 15:46:18 2021 +0200
+++ b/tests/scenario_stock_shipment_cost.rst Sat May 15 09:22:28 2021 +0200
@@ -15,9 +15,11 @@
Patch _get_shipment_cost::
- >>> from unittest.mock import Mock
+ >>> from unittest.mock import patch
>>> from trytond.modules.stock_shipment_cost.stock import ShipmentCostMixin
- >>> ShipmentCostMixin._get_shipment_cost = Mock(return_value=Decimal('5'))
+ >>> mock = patch.object(
+ ... ShipmentCostMixin, '_get_shipment_cost',
+ ... return_value=Decimal('5')).start()
Activate modules::