| Index: third_party/WebKit/Tools/Scripts/webkitpy/common/system/workspace_mock.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/workspace_mock.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/workspace_mock.py
|
| index c161fdd6096c3d83da5c63f2abe1fdc8e13521fd..0abbdf77a55c2a0d9f1f66d9708f3e74d471b0fc 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/workspace_mock.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/workspace_mock.py
|
| @@ -29,11 +29,7 @@
|
|
|
| class MockWorkspace(object):
|
|
|
| - def __init__(self, *_):
|
| - self.zip_path = None
|
| - self.source_path = None
|
| -
|
| - def find_unused_filename(self, directory, name, extension, **_):
|
| + def find_unused_filename(self, directory, name, extension, search_limit=10):
|
| return "%s/%s.%s" % (directory, name, extension)
|
|
|
| def create_zip(self, zip_path, source_path):
|
|
|