summaryrefslogtreecommitdiff
path: root/python/samba/tests/dcerpc/rpcecho.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/samba/tests/dcerpc/rpcecho.py')
-rw-r--r--python/samba/tests/dcerpc/rpcecho.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/samba/tests/dcerpc/rpcecho.py b/python/samba/tests/dcerpc/rpcecho.py
index 33cb867f09c..0711ae41546 100644
--- a/python/samba/tests/dcerpc/rpcecho.py
+++ b/python/samba/tests/dcerpc/rpcecho.py
@@ -40,7 +40,7 @@ class RpcEchoTests(RpcInterfaceTestCase):
self.assertEquals(2, self.conn.AddOne(1))
def test_echodata(self):
- self.assertEquals([1,2,3], self.conn.EchoData([1, 2, 3]))
+ self.assertEquals([1, 2, 3], self.conn.EchoData([1, 2, 3]))
def test_call(self):
self.assertEquals(u"foobar", self.conn.TestCall(u"foobar"))
@@ -48,7 +48,7 @@ class RpcEchoTests(RpcInterfaceTestCase):
def test_surrounding(self):
surrounding_struct = echo.Surrounding()
surrounding_struct.x = 4
- surrounding_struct.surrounding = [1,2,3,4]
+ surrounding_struct.surrounding = [1, 2, 3, 4]
y = self.conn.TestSurrounding(surrounding_struct)
self.assertEquals(8 * [0], y.surrounding)