From 53bffd58884e86b494fece23691a15b69ebaa249 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=A9rome=20Perrin?= <jerome@nexedi.com>
Date: Fri, 21 May 2010 12:31:38 +0000
Subject: [PATCH] make sure port is an integer

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

diff --git a/product/ERP5Type/tests/prepareFunctionalTest.py b/product/ERP5Type/tests/prepareFunctionalTest.py
index dbcde0bdaa..754bac08a1 100755
--- a/product/ERP5Type/tests/prepareFunctionalTest.py
+++ b/product/ERP5Type/tests/prepareFunctionalTest.py
@@ -47,7 +47,7 @@ class FunctionalTestRunner(FunctionalTestRunnerBase):
     FunctionalTestRunnerBase.__init__(self, os.environ['INSTANCE_HOME'])
     # local overrides
     self.host = host
-    self.port = port
+    self.port = int(port)
   
   def getSvnRevision(self):
     # we should get the revision of a business template, but this is good
-- 
2.30.9