changeset 07452bd4a68a in modules/stock_package_shipping_ups:5.0
details: 
https://hg.tryton.org/modules/stock_package_shipping_ups?cmd=changeset&node=07452bd4a68a
description:
        Do not use international shipping in test scenario

        issue11718
        review423881003
        (grafted from bdd9f5cda59fd7ed0eff16a6e79cb13fd8139567)
diffstat:

 tests/scenario_shipping_ups.rst |  14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diffs (30 lines):

diff -r 9d6708ea4925 -r 07452bd4a68a tests/scenario_shipping_ups.rst
--- a/tests/scenario_shipping_ups.rst   Thu Sep 16 23:45:57 2021 +0200
+++ b/tests/scenario_shipping_ups.rst   Sun Sep 25 20:27:25 2022 +0200
@@ -53,19 +53,19 @@
 
     >>> belgium = Country(code='BE', name='Belgium')
     >>> belgium.save()
-    >>> britain = Country(code='GB', name='Great Britain')
-    >>> britain.save()
+    >>> france = Country(code='FR', name='France')
+    >>> france.save()
     >>> customer = Party(name='Customer')
     >>> customer.save()
     >>> customer_address = customer.addresses.new()
-    >>> customer_address.street = 'Anfield Road'
-    >>> customer_address.zip = 'L 40TH'
-    >>> customer_address.city = 'Liverpool'
-    >>> customer_address.country = britain
+    >>> customer_address.street = 'Champs élysées'
+    >>> customer_address.zip = '75008'
+    >>> customer_address.city = 'Paris'
+    >>> customer_address.country = france
     >>> customer_address.save()
     >>> customer_phone = customer.contact_mechanisms.new()
     >>> customer_phone.type = 'phone'
-    >>> customer_phone.value = '+44 151 260 6677'
+    >>> customer_phone.value = '+33 93 842 8862'
     >>> customer_phone.save()
 
 Set the warehouse address::

Reply via email to