| Index: third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_mock.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_mock.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_mock.py
|
| index 56048f875fd2d9514cde2864b79b5272070c40ae..11faf9a74684a3c744b0585221924bd66a28e110 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_mock.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_mock.py
|
| @@ -11,9 +11,7 @@ class MockGit(object):
|
| # Arguments are listed below, even if they're unused, in order to match
|
| # the Git class. pylint: disable=unused-argument
|
|
|
| - executable_name = 'mock-git'
|
| -
|
| - def __init__(self, cwd=None, filesystem=None, executive=None):
|
| + def __init__(self, cwd=None, filesystem=None, executive=None, platform=None):
|
| self.checkout_root = '/mock-checkout'
|
| self.cwd = cwd or self.checkout_root
|
| self.added_paths = set()
|
|
|