summaryrefslogtreecommitdiff
path: root/python/test
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2018-09-26 10:20:42 +0200
committerJose <jose@zeroc.com>2018-09-26 10:20:42 +0200
commitf5ac1e4d5d623fda0689f020104997989db35c10 (patch)
treed56639bbc21301ec39244ca439d3fa9c829317b7 /python/test
parentUpdate expat NuGet packages to 2.2.6 (diff)
downloadice-f5ac1e4d5d623fda0689f020104997989db35c10.tar.bz2
ice-f5ac1e4d5d623fda0689f020104997989db35c10.tar.xz
ice-f5ac1e4d5d623fda0689f020104997989db35c10.zip
Fix python Ice/info test failure
Close #215
Diffstat (limited to 'python/test')
-rw-r--r--python/test/Ice/info/AllTests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/test/Ice/info/AllTests.py b/python/test/Ice/info/AllTests.py
index e7d4f14054a..a9225bbca40 100644
--- a/python/test/Ice/info/AllTests.py
+++ b/python/test/Ice/info/AllTests.py
@@ -104,8 +104,8 @@ def allTests(helper, communicator):
adapter.destroy()
- communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -h * -p 12020")
- communicator.getProperties().setProperty("TestAdapter.PublishedEndpoints", "default -h 127.0.0.1 -p 12020")
+ communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -h * -p 15000")
+ communicator.getProperties().setProperty("TestAdapter.PublishedEndpoints", "default -h 127.0.0.1 -p 15000")
adapter = communicator.createObjectAdapter("TestAdapter")
endpoints = adapter.getEndpoints()
@@ -116,7 +116,7 @@ def allTests(helper, communicator):
for i in range(0, len(endpoints)):
tcpEndpoint = getTCPEndpointInfo(endpoints[i].getInfo())
- test(tcpEndpoint.port == 12020)
+ test(tcpEndpoint.port == 15000)
tcpEndpoint = getTCPEndpointInfo(publishedEndpoints[0].getInfo())
test(tcpEndpoint.host == "127.0.0.1")