From a03ae69b8b4c5ee3d26fa3d3bf64267a920d17a9 Mon Sep 17 00:00:00 2001 From: Mark Spruiell Date: Thu, 4 May 2017 10:27:10 -0700 Subject: ICE-7275 - Raise NotImplementedError in generated Python skeletons ICE-7763 - Add support for marshaled-result in Python --- python/test/Ice/operations/ServerAMD.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'python/test/Ice/operations/ServerAMD.py') diff --git a/python/test/Ice/operations/ServerAMD.py b/python/test/Ice/operations/ServerAMD.py index 26375cfe2b3..43616a7bc17 100755 --- a/python/test/Ice/operations/ServerAMD.py +++ b/python/test/Ice/operations/ServerAMD.py @@ -426,22 +426,22 @@ class MyDerivedClassI(Test.MyDerivedClass): return self.opStringLiterals(current) def opMStruct1(self, current): - return Ice.Future.completed(Test.Structure()) + return Ice.Future.completed(Test.MyClass.OpMStruct1MarshaledResult(Test.Structure(), current)) def opMStruct2(self, p1, current): - return Ice.Future.completed((p1, p1)) + return Ice.Future.completed(Test.MyClass.OpMStruct2MarshaledResult((p1, p1), current)) def opMSeq1(self, current): - return Ice.Future.completed([]) + return Ice.Future.completed(Test.MyClass.OpMSeq1MarshaledResult([], current)) def opMSeq2(self, p1, current): - return Ice.Future.completed((p1, p1)) + return Ice.Future.completed(Test.MyClass.OpMSeq2MarshaledResult((p1, p1), current)) def opMDict1(self, current): - return Ice.Future.completed({}) + return Ice.Future.completed(Test.MyClass.OpMDict1MarshaledResult({}, current)) def opMDict2(self, p1, current): - return Ice.Future.completed((p1, p1)) + return Ice.Future.completed(Test.MyClass.OpMDict2MarshaledResult((p1, p1), current)) def run(args, communicator): communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -p 12010:udp") -- cgit v1.2.3