diff options
Diffstat (limited to 'python/test/Ice/thread/AllTests.py')
-rw-r--r-- | python/test/Ice/thread/AllTests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/test/Ice/thread/AllTests.py b/python/test/Ice/thread/AllTests.py index 48d4fce67a0..0614992021a 100644 --- a/python/test/Ice/thread/AllTests.py +++ b/python/test/Ice/thread/AllTests.py @@ -13,9 +13,9 @@ def test(b): if not b: raise RuntimeError('test assertion failed') -def allTests(communicator): +def allTests(helper, communicator): - ref = "factory:default -p 12010 -t 10000" + ref = "factory:{0} -t 10000".format(helper.getTestEndpoint()) factory = Test.RemoteCommunicatorFactoryPrx.checkedCast(communicator.stringToProxy(ref)) sys.stdout.write("testing thread hooks... ") |