Chromium Code Reviews| Index: third_party/WebKit/Tools/Scripts/webkitpy/common/host_mock.py |
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/host_mock.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/host_mock.py |
| index 238fff70b15780ed236f36a2eb2e7d5dfdc5f022..7959bdeacd6f37fd5e015c623c0370c0a1599401 100644 |
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/common/host_mock.py |
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/host_mock.py |
| @@ -40,11 +40,11 @@ from webkitpy.layout_tests.port.test import add_unit_tests_to_mock_filesystem |
| class MockHost(MockSystemHost): |
| - def __init__(self, log_executive=False, executive_throws_when_run=None, |
| + def __init__(self, log_executive=False, |
| initialize_scm_by_default=True, web=None, scm=None, os_name=None, os_version=None, |
| time_return_val=123): |
|
jeffcarp
2016/12/22 22:48:46
Do you want to re-shuffle the indentation here? (n
|
| - MockSystemHost.__init__(self, log_executive, executive_throws_when_run, os_name=os_name, |
| + MockSystemHost.__init__(self, log_executive, os_name=os_name, |
| os_version=os_version, time_return_val=time_return_val) |
| add_unit_tests_to_mock_filesystem(self.filesystem) |