summaryrefslogtreecommitdiff
path: root/python/test/Ice/optional/Server.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/test/Ice/optional/Server.py')
-rwxr-xr-xpython/test/Ice/optional/Server.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/python/test/Ice/optional/Server.py b/python/test/Ice/optional/Server.py
index daf66a2c91e..b1f3398cb56 100755
--- a/python/test/Ice/optional/Server.py
+++ b/python/test/Ice/optional/Server.py
@@ -148,28 +148,28 @@ class InitialI(Test.Initial):
pass
def opMStruct1(self, current):
- return Test.SmallStruct()
+ return Test.Initial.OpMStruct1MarshaledResult(Test.SmallStruct(), current)
def opMStruct2(self, p1, current):
- return (p1, p1)
+ return Test.Initial.OpMStruct2MarshaledResult((p1, p1), current)
def opMSeq1(self, current):
- return []
+ return Test.Initial.OpMSeq1MarshaledResult([], current)
def opMSeq2(self, p1, current):
- return (p1, p1)
+ return Test.Initial.OpMSeq2MarshaledResult((p1, p1), current)
def opMDict1(self, current):
- return {}
+ return Test.Initial.OpMDict1MarshaledResult({}, current)
def opMDict2(self, p1, current):
- return (p1, p1)
+ return Test.Initial.OpMDict2MarshaledResult((p1, p1), current)
def opMG1(self, current):
- return Test.G()
+ return Test.Initial.OpMG1MarshaledResult(Test.G(), current)
def opMG2(self, p1, current):
- return (p1, p1)
+ return Test.Initial.OpMG2MarshaledResult((p1, p1), current)
def supportsRequiredParams(self, current=None):
return False