summaryrefslogtreecommitdiff
path: root/python/test/Ice/optional/AllTests.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/test/Ice/optional/AllTests.py')
-rw-r--r--python/test/Ice/optional/AllTests.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/python/test/Ice/optional/AllTests.py b/python/test/Ice/optional/AllTests.py
index 574727ab386..e2c20f64783 100644
--- a/python/test/Ice/optional/AllTests.py
+++ b/python/test/Ice/optional/AllTests.py
@@ -324,7 +324,7 @@ def allTests(communicator):
outer = Test.Recursive()
outer.value = recursive1
initial.pingPong(outer)
-
+
g = Test.G()
g.gg1Opt = Test.G1("gg1Opt")
g.gg2 = Test.G2(10)
@@ -336,6 +336,9 @@ def allTests(communicator):
test(r.gg2Opt.a == 20)
test(r.gg1.a == "gg1")
+ initial2 = Test.Initial2Prx.uncheckedCast(base)
+ initial2.opVoid(15, "test")
+
print("ok")
sys.stdout.write("testing marshaling of large containers with fixed size elements... ")