diff options
Diffstat (limited to 'py/test/Ice/operations')
-rw-r--r-- | py/test/Ice/operations/Collocated.py | 2 | ||||
-rw-r--r-- | py/test/Ice/operations/Server.py | 2 | ||||
-rw-r--r-- | py/test/Ice/operations/ServerAMD.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/py/test/Ice/operations/Collocated.py b/py/test/Ice/operations/Collocated.py index 823a5bfc14b..d08f38f7986 100644 --- a/py/test/Ice/operations/Collocated.py +++ b/py/test/Ice/operations/Collocated.py @@ -35,7 +35,7 @@ Ice.loadSlice('-I' + slice_dir + '/slice Test.ice') import Test, TestI, AllTests def run(args, communicator): - communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -p 12010 -t 10000") + communicator.getProperties().setProperty("Ice.OA.TestAdapter.Endpoints", "default -p 12010 -t 10000") adapter = communicator.createObjectAdapter("TestAdapter") id = communicator.stringToIdentity("test") adapter.add(TestI.MyDerivedClassI(adapter, id), id) diff --git a/py/test/Ice/operations/Server.py b/py/test/Ice/operations/Server.py index d3dc430be7f..36ecaea2793 100644 --- a/py/test/Ice/operations/Server.py +++ b/py/test/Ice/operations/Server.py @@ -36,7 +36,7 @@ Ice.loadSlice('-I' + slice_dir + '/slice Test.ice') import Test, TestI def run(args, communicator): - communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -p 12010 -t 10000:udp") + communicator.getProperties().setProperty("Ice.OA.TestAdapter.Endpoints", "default -p 12010 -t 10000:udp") adapter = communicator.createObjectAdapter("TestAdapter") id = communicator.stringToIdentity("test") adapter.add(TestI.MyDerivedClassI(adapter, id), id) diff --git a/py/test/Ice/operations/ServerAMD.py b/py/test/Ice/operations/ServerAMD.py index 08a753995c5..6272b646111 100644 --- a/py/test/Ice/operations/ServerAMD.py +++ b/py/test/Ice/operations/ServerAMD.py @@ -229,7 +229,7 @@ class TestCheckedCastI(Test.TestCheckedCast): return Test.TestCheckedCast.ice_isA(self, s, current) def run(args, communicator): - communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -p 12010 -t 10000:udp") + communicator.getProperties().setProperty("Ice.OA.TestAdapter.Endpoints", "default -p 12010 -t 10000:udp") adapter = communicator.createObjectAdapter("TestAdapter") id = communicator.stringToIdentity("test") adapter.add(MyDerivedClassI(adapter, id), id) |