summaryrefslogtreecommitdiff
path: root/python/test/Ice/proxy/ServerAMD.py
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2017-01-26 21:52:52 +0100
committerJose <jose@zeroc.com>2017-01-26 21:52:52 +0100
commitf3eeced45abdcbb8af31569bf8cee55f0d2a3b4b (patch)
treef98f59d56e7185ee90d504cf077e57465655f7fd /python/test/Ice/proxy/ServerAMD.py
parentFixed ICE-6920 - Communicator::destroy is now noexcept (diff)
downloadice-f3eeced45abdcbb8af31569bf8cee55f0d2a3b4b.tar.bz2
ice-f3eeced45abdcbb8af31569bf8cee55f0d2a3b4b.tar.xz
ice-f3eeced45abdcbb8af31569bf8cee55f0d2a3b4b.zip
Python: Ice.Value implementation
Diffstat (limited to 'python/test/Ice/proxy/ServerAMD.py')
-rwxr-xr-xpython/test/Ice/proxy/ServerAMD.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/test/Ice/proxy/ServerAMD.py b/python/test/Ice/proxy/ServerAMD.py
index b2f71d6fcfa..00a109ef7db 100755
--- a/python/test/Ice/proxy/ServerAMD.py
+++ b/python/test/Ice/proxy/ServerAMD.py
@@ -19,7 +19,7 @@ if not slice_dir:
Ice.loadSlice("'-I" + slice_dir + "' TestAMD.ice")
import Test
-class MyDerivedClassI(Test.MyDerivedClass):
+class MyDerivedClassI(Test._MyDerivedClassDisp):
def __init__(self):
self.ctx = None
@@ -34,7 +34,7 @@ class MyDerivedClassI(Test.MyDerivedClass):
def ice_isA(self, s, current):
self.ctx = current.ctx
- return Test.MyDerivedClass.ice_isA(self, s, current)
+ return Test._MyDerivedClassDisp.ice_isA(self, s, current)
def run(args, communicator):
communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -p 12010:udp")