summaryrefslogtreecommitdiff
path: root/source4/torture
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-01-13 23:13:30 +0100
committerJelmer Vernooij <jelmer@samba.org>2008-01-14 19:53:05 +0100
commitd8b21ae2534d5b51c1dc5a4c50b3de5ddb32af80 (patch)
tree7246169c3a915835abd05f357c7a8083968832b2 /source4/torture
parent0d39a205bf227851028aea11744e6a60ff9a2cb9 (diff)
downloadsamba-d8b21ae2534d5b51c1dc5a4c50b3de5ddb32af80.tar.gz
samba-d8b21ae2534d5b51c1dc5a4c50b3de5ddb32af80.tar.bz2
samba-d8b21ae2534d5b51c1dc5a4c50b3de5ddb32af80.zip
pidl/python: Fix use of pointers.
(This used to be commit 13f2b0380f310b101975d709361a29d4032c3689)
Diffstat (limited to 'source4/torture')
-rw-r--r--source4/torture/rpc/echo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/torture/rpc/echo.py b/source4/torture/rpc/echo.py
index 7a0a54a1a1..47b71c9e15 100644
--- a/source4/torture/rpc/echo.py
+++ b/source4/torture/rpc/echo.py
@@ -35,5 +35,5 @@ class RpcEchoTests(unittest.TestCase):
def test_surrounding(self):
somearray = [1,2,3,4]
- conn.TestSurrounding(echo.Surrounding(4, somearray))
- self.assertEquals(8 * [0], somearray)
+ (y) = conn.TestSurrounding(echo.Surrounding(4, somearray)))
+ self.assertEquals(8 * [0], y.surrounding)