Commit 767b6702 authored by Jean-Paul Smets's avatar Jean-Paul Smets

Use a phone number according to the standard.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@12078 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent edf28f6d
...@@ -414,8 +414,8 @@ class TestHR(ERP5TypeTestCase): ...@@ -414,8 +414,8 @@ class TestHR(ERP5TypeTestCase):
organisation.setDefaultAddressRegion(region_path) organisation.setDefaultAddressRegion(region_path)
organisation.setDefaultAddressZipCode('59000') organisation.setDefaultAddressZipCode('59000')
organisation.setDefaultAddressStreetAddress('42, rue des gnous') organisation.setDefaultAddressStreetAddress('42, rue des gnous')
organisation.setDefaultTelephoneText('55 55 5555') organisation.setDefaultTelephoneText('+55(0)66-5555') # Phone follows default conventions
organisation.setDefaultFaxText('69 1337') organisation.setDefaultFaxText('+55(0)69-1337')
organisation.setDefaultEmailText('kevin@truc-bidule.com') organisation.setDefaultEmailText('kevin@truc-bidule.com')
self.failUnless('default_address' in organisation.contentIds()) self.failUnless('default_address' in organisation.contentIds())
...@@ -429,7 +429,7 @@ class TestHR(ERP5TypeTestCase): ...@@ -429,7 +429,7 @@ class TestHR(ERP5TypeTestCase):
self.assertEquals( organisation.getDefaultAddressRegion() self.assertEquals( organisation.getDefaultAddressRegion()
, default_address.getRegion() , default_address.getRegion()
) )
# self.assertEquals( organisation.getDefaultAddressRegionTitle() # self.assertEquals( organisation.getDefaultAddressRegionTitle() # XXX Why ?
# , default_address.getRegionTitle() # , default_address.getRegionTitle()
# ) # )
# self.assertEquals( organisation.getDefaultAddressRegionValue() # self.assertEquals( organisation.getDefaultAddressRegionValue()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment