summaryrefslogtreecommitdiff
path: root/python/test/Ice/objects/Server.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/test/Ice/objects/Server.py')
-rwxr-xr-xpython/test/Ice/objects/Server.py4
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