diff options
Diffstat (limited to 'python/test/Ice/operations/Twoways.py')
-rw-r--r-- | python/test/Ice/operations/Twoways.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/python/test/Ice/operations/Twoways.py b/python/test/Ice/operations/Twoways.py index bc138341c2c..03f0a2f479d 100644 --- a/python/test/Ice/operations/Twoways.py +++ b/python/test/Ice/operations/Twoways.py @@ -9,7 +9,7 @@ def test(b): if not b: raise RuntimeError('test assertion failed') -def twoways(helper, p): +def twoways(helper, p, bprx): communicator = helper.communicator() literals = p.opStringLiterals() @@ -1431,3 +1431,6 @@ def twoways(helper, p): p1 = { "test": "test" } (p3, p2) = p.opMDict2(p1) test(p3["test"] == "test" and p2["test"] == "test") + + bprx.opB() + bprx.opIntf() |