From 9f884d35f4b2971328359cab26bdd4b3bb771bd5 Mon Sep 17 00:00:00 2001
From: Sebastien Robin <seb@nexedi.com>
Date: Tue, 21 Dec 2010 14:41:11 +0000
Subject: [PATCH] use ',' separator instead of ':', this is better because
 connection string might use ':' in order to specify port numbers

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@41607 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/ERP5Type/tests/utils.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/product/ERP5Type/tests/utils.py b/product/ERP5Type/tests/utils.py
index 15a76ff50a..e47bc08465 100644
--- a/product/ERP5Type/tests/utils.py
+++ b/product/ERP5Type/tests/utils.py
@@ -262,7 +262,7 @@ def getExtraSqlConnectionStringList():
   """Return list of extra available SQL connection string
   """
   return os.environ.get('extra_sql_connection_string_list',
-                        'test2 test2:test3 test3').split(':')
+                        'test2 test2,test3 test3').split(',')
 
 instance_random = random.Random(hash(os.environ['INSTANCE_HOME']))
 
-- 
2.30.9