diff options
author | Jose <jose@zeroc.com> | 2018-08-06 11:56:42 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-08-06 11:56:42 +0200 |
commit | 7972f07a3aa244dcde673b7cb5541e70da9193bb (patch) | |
tree | 117faced1bb36ac256c7d362e11ac1c49e8e8c88 /python/test/Ice/admin/AllTests.py | |
parent | Update JavaScript tests to use TestHelper class (diff) | |
download | ice-7972f07a3aa244dcde673b7cb5541e70da9193bb.tar.bz2 ice-7972f07a3aa244dcde673b7cb5541e70da9193bb.tar.xz ice-7972f07a3aa244dcde673b7cb5541e70da9193bb.zip |
Python test suite updates
Diffstat (limited to 'python/test/Ice/admin/AllTests.py')
-rw-r--r-- | python/test/Ice/admin/AllTests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/test/Ice/admin/AllTests.py b/python/test/Ice/admin/AllTests.py index 7ef0e0a3fb9..e0457252850 100644 --- a/python/test/Ice/admin/AllTests.py +++ b/python/test/Ice/admin/AllTests.py @@ -71,7 +71,7 @@ def testFacets(com, builtInFacets = True): except Ice.NotRegisteredException: pass # Expected -def allTests(communicator): +def allTests(helper, communicator): sys.stdout.write("testing communicator operations... ") sys.stdout.flush() @@ -144,7 +144,7 @@ def allTests(communicator): com.destroy() print("ok") - ref = "factory:default -p 12010 -t 10000" + ref = "factory:{0} -t 10000".format(helper.getTestEndpoint()) factory = Test.RemoteCommunicatorFactoryPrx.uncheckedCast(communicator.stringToProxy(ref)) sys.stdout.write("testing process facet... ") |