From 9c0c2aebcc73bfd3fd79472f959ddb176ef26c03 Mon Sep 17 00:00:00 2001 From: hyades Date: Fri, 30 Aug 2013 07:42:13 +0530 Subject: [PATCH] removed ports close to 1000 from tests --- python-api/tests/integrationtests/test_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-api/tests/integrationtests/test_controller.py b/python-api/tests/integrationtests/test_controller.py index 3040ec6..8bcc37a 100644 --- a/python-api/tests/integrationtests/test_controller.py +++ b/python-api/tests/integrationtests/test_controller.py @@ -62,7 +62,7 @@ def test_compose_ports(self): res = [] expected_result = [] for i in range(self.NUM): - video_port = (i+1)*1000 + video_port = (i+5)*1000 expected_result.append([video_port+1]*self.NUM*self.FACTOR) s = Server(path=PATH, video_port=video_port) try: