diff options
author | Mark Spruiell <mes@zeroc.com> | 2011-05-04 17:59:29 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2011-05-04 17:59:29 -0700 |
commit | c8d03f9eb29f4a10d77297de8afc912e5456805c (patch) | |
tree | 61e7678c10646c45e8d474f3a48ef665c3344fbf /py/test/Ice/operations/TestI.py | |
parent | bug 4976 - inconsistent operation mode for pseudo ops (diff) | |
download | ice-c8d03f9eb29f4a10d77297de8afc912e5456805c.tar.bz2 ice-c8d03f9eb29f4a10d77297de8afc912e5456805c.tar.xz ice-c8d03f9eb29f4a10d77297de8afc912e5456805c.zip |
bug 4976 - add test for Normal mode
Diffstat (limited to 'py/test/Ice/operations/TestI.py')
-rw-r--r-- | py/test/Ice/operations/TestI.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/test/Ice/operations/TestI.py b/py/test/Ice/operations/TestI.py index 1ac8d24e89b..253765b03d0 100644 --- a/py/test/Ice/operations/TestI.py +++ b/py/test/Ice/operations/TestI.py @@ -34,7 +34,7 @@ class MyDerivedClassI(Test.MyDerivedClass): current.adapter.getCommunicator().shutdown() def opVoid(self, current=None): - pass + test(current.mode == Ice.OperationMode.Normal) def opByte(self, p1, p2, current=None): return (p1, p1 ^ p2) |