From 767b67023016d76d10d8a587298f95446ff7b724 Mon Sep 17 00:00:00 2001
From: Jean-Paul Smets <jp@nexedi.com>
Date: Sun, 14 Jan 2007 09:44:19 +0000
Subject: [PATCH] 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
---
 product/ERP5/tests/testERP5HR.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/product/ERP5/tests/testERP5HR.py b/product/ERP5/tests/testERP5HR.py
index 64df3030a7..772c3088b5 100644
--- a/product/ERP5/tests/testERP5HR.py
+++ b/product/ERP5/tests/testERP5HR.py
@@ -414,8 +414,8 @@ class TestHR(ERP5TypeTestCase):
     organisation.setDefaultAddressRegion(region_path)
     organisation.setDefaultAddressZipCode('59000')
     organisation.setDefaultAddressStreetAddress('42, rue des gnous')
-    organisation.setDefaultTelephoneText('55 55 5555')
-    organisation.setDefaultFaxText('69 1337')
+    organisation.setDefaultTelephoneText('+55(0)66-5555') # Phone follows default conventions
+    organisation.setDefaultFaxText('+55(0)69-1337')
     organisation.setDefaultEmailText('kevin@truc-bidule.com')
 
     self.failUnless('default_address' in organisation.contentIds())
@@ -429,7 +429,7 @@ class TestHR(ERP5TypeTestCase):
     self.assertEquals( organisation.getDefaultAddressRegion()
                      , default_address.getRegion()
                      )
-#     self.assertEquals( organisation.getDefaultAddressRegionTitle()
+#     self.assertEquals( organisation.getDefaultAddressRegionTitle() # XXX Why ?
 #                      , default_address.getRegionTitle()
 #                      )
 #     self.assertEquals( organisation.getDefaultAddressRegionValue()
-- 
2.30.9