| Index: third_party/WebKit/Tools/Scripts/webkitpy/common/system/user_mock.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/user_mock.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/user_mock.py
|
| index dcd8f170f4af5ba8ce5aa485c429fabe8122264d..e70e130930e0f8c95b12db95f42d578e77617108 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/user_mock.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/user_mock.py
|
| @@ -34,11 +34,11 @@ _log = logging.getLogger(__name__)
|
| class MockUser(object):
|
|
|
| @classmethod
|
| - def prompt(cls, message, repeat=1, raw_input_func=raw_input): # pylint: disable=unused-argument
|
| + def prompt(cls, message, repeat=1, raw_input=raw_input):
|
| return "Mock user response"
|
|
|
| @classmethod
|
| - def prompt_with_list(cls, list_title, list_items, can_choose_multiple=False, raw_input_func=raw_input):
|
| + def prompt_with_list(cls, list_title, list_items, can_choose_multiple=False, raw_input=raw_input):
|
| pass
|
|
|
| def __init__(self):
|
|
|