Chromium Code Reviews| Index: third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm_mock.py |
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm_mock.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm_mock.py |
| index 76392e28977c282e3377fb97d2db441b18dfbd0a..9fc33ccd6d94d3071b3eb7e8c691a152874de9a5 100644 |
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm_mock.py |
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm_mock.py |
| @@ -40,6 +40,9 @@ class MockSCM(object): |
| self._executive = executive or MockExecutive() |
| self._local_commits = [] |
| + def add_all(self): |
| + pass |
|
qyearsley
2016/10/06 23:05:57
Note, I think it might be nice to actually make th
|
| + |
| def add(self, destination_path, return_exit_code=False): |
| self.add_list([destination_path], return_exit_code) |