diff options
Diffstat (limited to 'python/test/Ice/objects/Server.py')
-rwxr-xr-x | python/test/Ice/objects/Server.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/test/Ice/objects/Server.py b/python/test/Ice/objects/Server.py index 0758fc4009b..89b440c6845 100755 --- a/python/test/Ice/objects/Server.py +++ b/python/test/Ice/objects/Server.py @@ -32,9 +32,9 @@ def run(args, communicator): communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -p 12010") adapter = communicator.createObjectAdapter("TestAdapter") initial = TestI.InitialI(adapter) - adapter.add(initial, communicator.stringToIdentity("initial")) + adapter.add(initial, Ice.stringToIdentity("initial")) uoet = TestI.UnexpectedObjectExceptionTestI() - adapter.add(uoet, communicator.stringToIdentity("uoet")) + adapter.add(uoet, Ice.stringToIdentity("uoet")) adapter.activate() communicator.waitForShutdown() return True |