| Index: build/android/pylib/local/device/local_device_monkey_test_run.py
|
| diff --git a/build/android/pylib/local/device/local_device_monkey_test_run.py b/build/android/pylib/local/device/local_device_monkey_test_run.py
|
| index a59b67249c9de684196a0a6d32e8c42440614da2..1cb40e44a8a08f3c86a1a0c247b0f7ea07ddbb65 100644
|
| --- a/build/android/pylib/local/device/local_device_monkey_test_run.py
|
| +++ b/build/android/pylib/local/device/local_device_monkey_test_run.py
|
| @@ -14,8 +14,9 @@ from pylib.local.device import local_device_test_run
|
| _CHROME_PACKAGE = constants.PACKAGE_INFO['chrome'].package
|
|
|
| class LocalDeviceMonkeyTestRun(local_device_test_run.LocalDeviceTestRun):
|
| - def __init__(self, env, test_instance):
|
| - super(LocalDeviceMonkeyTestRun, self).__init__(env, test_instance)
|
| + def __init__(self, env, test_instance, test_output_saver):
|
| + super(LocalDeviceMonkeyTestRun, self).__init__(
|
| + env, test_instance, test_output_saver)
|
|
|
| def TestPackage(self):
|
| return 'monkey'
|
|
|