diff options
Diffstat (limited to 'python/test/Ice/slicing/objects/AllTests.py')
-rw-r--r-- | python/test/Ice/slicing/objects/AllTests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/test/Ice/slicing/objects/AllTests.py b/python/test/Ice/slicing/objects/AllTests.py index 2e412a07fe2..252b2c9f0d3 100644 --- a/python/test/Ice/slicing/objects/AllTests.py +++ b/python/test/Ice/slicing/objects/AllTests.py @@ -392,8 +392,8 @@ def PreservedFactoryI(id): return PreservedI() return None -def allTests(communicator): - obj = communicator.stringToProxy("Test:default -p 12010") +def allTests(helper, communicator): + obj = communicator.stringToProxy("Test:{0}".format(helper.getTestEndpoint())) t = Test.TestIntfPrx.checkedCast(obj) sys.stdout.write("base as Object... ") |