diff options
Diffstat (limited to 'python/test/Ice/packagemd/AllTests.py')
-rw-r--r-- | python/test/Ice/packagemd/AllTests.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/python/test/Ice/packagemd/AllTests.py b/python/test/Ice/packagemd/AllTests.py index 035b1f9dbcf..3934e453707 100644 --- a/python/test/Ice/packagemd/AllTests.py +++ b/python/test/Ice/packagemd/AllTests.py @@ -13,10 +13,11 @@ def test(b): if not b: raise RuntimeError('test assertion failed') -def allTests(communicator): +def allTests(helper, communicator): + sys.stdout.write("testing stringToProxy... ") sys.stdout.flush() - ref = "initial:default -p 12010" + ref = "initial:{0}".format(helper.getTestEndpoint()) base = communicator.stringToProxy(ref) test(base) print("ok") |