]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
python: Fix samba4.dcerpc.rpcecho.RpcEchoTests.test_surrounding test.
authorJelmer Vernooij <jelmer@samba.org>
Mon, 8 Jun 2009 20:41:39 +0000 (22:41 +0200)
committerJelmer Vernooij <jelmer@samba.org>
Mon, 8 Jun 2009 20:41:39 +0000 (22:41 +0200)
source4/scripting/python/samba/tests/dcerpc/rpcecho.py

index 62268005c2588e122b12e441885ab92a21ebed55..12638e2397b63ccbdbb3082a6ff3d38a5ef7eaa5 100644 (file)
@@ -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))