diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-07-07 17:28:24 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-07-07 17:28:24 +0200 |
commit | 8e4713ead4275e26ef6351dc658bdfdfa2df4a90 (patch) | |
tree | c87762d7d11b5fb16d23d50f4fbd7d1fec7583e7 /python/test/Ice/optional/Server.py | |
parent | Updated build instructions (diff) | |
download | ice-8e4713ead4275e26ef6351dc658bdfdfa2df4a90.tar.bz2 ice-8e4713ead4275e26ef6351dc658bdfdfa2df4a90.tar.xz ice-8e4713ead4275e26ef6351dc658bdfdfa2df4a90.zip |
Added test for optional object dictionary parameters
Diffstat (limited to 'python/test/Ice/optional/Server.py')
-rwxr-xr-x | python/test/Ice/optional/Server.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/test/Ice/optional/Server.py b/python/test/Ice/optional/Server.py index eba7e7ccad6..6f1d9f2fdb7 100755 --- a/python/test/Ice/optional/Server.py +++ b/python/test/Ice/optional/Server.py @@ -129,6 +129,9 @@ class InitialI(Test.Initial): def opStringIntDict(self, p1, current=None): return (p1, p1) + def opIntOneOptionalDict(self, p1, current=None): + return (p1, p1) + def opClassAndUnknownOptional(self, p, current=None): pass |