diff options
author | Jose <jose@zeroc.com> | 2017-02-10 10:38:44 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-02-10 10:38:44 +0100 |
commit | 24e4a7e926c8ef99bf531c1576b940fb1b1c42d1 (patch) | |
tree | a8952b230126a983b7db08fce316124612169018 /python/test/Ice/operations/Twoways.py | |
parent | Fixed ICE-7554 - Ice/ami failure on macOS (diff) | |
download | ice-24e4a7e926c8ef99bf531c1576b940fb1b1c42d1.tar.bz2 ice-24e4a7e926c8ef99bf531c1576b940fb1b1c42d1.tar.xz ice-24e4a7e926c8ef99bf531c1576b940fb1b1c42d1.zip |
Fix (ICE-7562) - Eliminate class-with-operation deprecated warnings
Diffstat (limited to 'python/test/Ice/operations/Twoways.py')
-rw-r--r-- | python/test/Ice/operations/Twoways.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/test/Ice/operations/Twoways.py b/python/test/Ice/operations/Twoways.py index 387b2758114..3ebeb9ffae8 100644 --- a/python/test/Ice/operations/Twoways.py +++ b/python/test/Ice/operations/Twoways.py @@ -103,7 +103,7 @@ def twoways(communicator, p): # # ice_isA # - test(p.ice_isA(Test.MyClass.ice_staticId())) + test(p.ice_isA(Test._MyClassDisp.ice_staticId())) # # ice_ids @@ -117,13 +117,13 @@ def twoways(communicator, p): # # ice_id # - test(p.ice_id() == Test.MyDerivedClass.ice_staticId()) + test(p.ice_id() == Test._MyDerivedClassDisp.ice_staticId()) # # Prx ice_staticId # - test(Test.MyClassPrx.ice_staticId() == Test.MyClass.ice_staticId()) - test(Test.MyDerivedClassPrx.ice_staticId() == Test.MyDerivedClass.ice_staticId()) + test(Test.MyClassPrx.ice_staticId() == Test._MyClassDisp.ice_staticId()) + test(Test.MyDerivedClassPrx.ice_staticId() == Test._MyDerivedClassDisp.ice_staticId()) test(Ice.ObjectPrx.ice_staticId() == Ice.Object.ice_staticId()) # |