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.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/python/test/Ice/optional/Server.py b/python/test/Ice/optional/Server.py
index 6f1d9f2fdb7..bf4236de34d 100755
--- a/python/test/Ice/optional/Server.py
+++ b/python/test/Ice/optional/Server.py
@@ -139,7 +139,7 @@ class InitialI(Test.Initial):
pass
def returnOptionalClass(self, req, current=None):
- return Test.OneOptional(5)
+ return Test.OneOptional(53)
def opG(self, g, current=None):
return g
@@ -156,6 +156,9 @@ class InitialI(Test.Initial):
def supportsCsharpSerializable(self, current=None):
return True
+ def supportsCppStringView(self, current=None):
+ return False
+
def run(args, communicator):
communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -p 12010:udp")
adapter = communicator.createObjectAdapter("TestAdapter")