changeset bdd9f5cda59f in modules/stock_package_shipping_ups:default
details:
https://hg.tryton.org/modules/stock_package_shipping_ups?cmd=changeset&node=bdd9f5cda59f
description:
Do not use international shipping in test scenario
issue11718
review423881003
diffstat:
tests/scenario_shipping_ups.rst | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diffs (30 lines):
diff -r 6b9c2e993a8e -r bdd9f5cda59f tests/scenario_shipping_ups.rst
--- a/tests/scenario_shipping_ups.rst Tue Jun 21 10:21:45 2022 +0200
+++ b/tests/scenario_shipping_ups.rst Sun Sep 25 20:27:25 2022 +0200
@@ -54,19 +54,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.postal_code = 'L 40TH'
- >>> customer_address.city = 'Liverpool'
- >>> customer_address.country = britain
+ >>> customer_address.street = 'Champs élysées'
+ >>> customer_address.postal_code = '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()
>>> customer_email = customer.contact_mechanisms.new()
>>> customer_email.type = 'email'