diff options
Diffstat (limited to 'python/test/Ice/objects/Collocated.py')
-rwxr-xr-x | python/test/Ice/objects/Collocated.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/test/Ice/objects/Collocated.py b/python/test/Ice/objects/Collocated.py index e3c50516101..02570bc35a9 100755 --- a/python/test/Ice/objects/Collocated.py +++ b/python/test/Ice/objects/Collocated.py @@ -19,9 +19,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() // Don't activate OA to ensure collocation is used. AllTests.allTests(communicator) |