| Index: third_party/WebKit/Tools/Scripts/webkitpy/common/system/systemhost_mock.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/systemhost_mock.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/systemhost_mock.py
|
| index 0ad9697bda23b9bf833934e7463c6a2f2dcc2222..d309d47fd7b2b249159657fa7f7d2f468bf51726 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/systemhost_mock.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/systemhost_mock.py
|
| @@ -38,7 +38,8 @@ from webkitpy.common.system.workspace_mock import MockWorkspace
|
|
|
| class MockSystemHost(object):
|
|
|
| - def __init__(self, log_executive=False, executive_throws_when_run=None, os_name=None, os_version=None, executive=None, filesystem=None):
|
| + def __init__(self, log_executive=False, executive_throws_when_run=None,
|
| + os_name=None, os_version=None, executive=None, filesystem=None):
|
| self.executable = 'python'
|
| self.executive = executive or MockExecutive(should_log=log_executive, should_throw_when_run=executive_throws_when_run)
|
| self.filesystem = filesystem or MockFileSystem()
|
|
|