| Index: mojo/python/tests/system_unittest.py
|
| diff --git a/mojo/python/tests/system_unittest.py b/mojo/python/tests/system_unittest.py
|
| index 7a3febc22286962f924d7876a2f6f20d217c162f..b956033512fba1735a5e7740adf40e2beed34f32 100644
|
| --- a/mojo/python/tests/system_unittest.py
|
| +++ b/mojo/python/tests/system_unittest.py
|
| @@ -264,7 +264,7 @@ class CoreTest(mojo_unittest.MojoTestCase):
|
|
|
| def testTwoPhaseWriteOnDataPipe(self):
|
| pipes = system.DataPipe()
|
| - (res, buf) = pipes.producer_handle.BeginWriteData(DATA_SIZE)
|
| + (res, buf) = pipes.producer_handle.BeginWriteData()
|
| self.assertEquals(system.RESULT_OK, res)
|
| self.assertGreaterEqual(len(buf.buffer), DATA_SIZE)
|
| data = _GetRandomBuffer(DATA_SIZE)
|
|
|