diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-06-08 22:41:39 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-06-08 22:41:39 +0200 |
commit | d5e6ae5cfc3d959a86d91b31dfd5481558308da9 (patch) | |
tree | 425a2eda040e4720ae461c74172a20a01107db6b /source4 | |
parent | c736baf9f82e7246718d0b65a93e983a614ad0ed (diff) | |
download | samba-d5e6ae5cfc3d959a86d91b31dfd5481558308da9.tar.gz samba-d5e6ae5cfc3d959a86d91b31dfd5481558308da9.tar.bz2 samba-d5e6ae5cfc3d959a86d91b31dfd5481558308da9.zip |
python: Fix samba4.dcerpc.rpcecho.RpcEchoTests.test_surrounding test.
Diffstat (limited to 'source4')
-rw-r--r-- | source4/scripting/python/samba/tests/dcerpc/rpcecho.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/tests/dcerpc/rpcecho.py b/source4/scripting/python/samba/tests/dcerpc/rpcecho.py index 62268005c2..12638e2397 100644 --- a/source4/scripting/python/samba/tests/dcerpc/rpcecho.py +++ b/source4/scripting/python/samba/tests/dcerpc/rpcecho.py @@ -49,7 +49,7 @@ class RpcEchoTests(RpcInterfaceTestCase): surrounding_struct.x = 4 surrounding_struct.surrounding = [1,2,3,4] y = self.conn.TestSurrounding(surrounding_struct) - self.assertEquals(4 * [0], y.surrounding) + self.assertEquals(8 * [0], y.surrounding) def test_manual_request(self): self.assertEquals("\x01\x00\x00\x00", self.conn.request(0, chr(0) * 4)) |