| Index: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/command_test.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/command_test.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/command_test.py
|
| index af73d612742236e89f589147ecc82fca312b88d5..c608dac5e9990dfbd9fdb1d5491ebcc9e52f6c17 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/command_test.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/command_test.py
|
| @@ -35,8 +35,9 @@ from webkitpy.tool.mock_tool import MockWebKitPatch
|
|
|
| class CommandsTest(unittest.TestCase):
|
|
|
| - def assert_execute_outputs(self, command, args=None, expected_stdout="", expected_stderr="",
|
| - expected_exception=None, expected_logs=None, options=optparse.Values(), tool=MockWebKitPatch()):
|
| + def assert_execute_outputs(
|
| + self, command, args=None, expected_stdout="", expected_stderr="",
|
| + expected_exception=None, expected_logs=None, options=optparse.Values(), tool=MockWebKitPatch()):
|
| args = args or []
|
| options.blocks = None
|
| options.cc = 'MOCK cc'
|
| @@ -50,5 +51,6 @@ class CommandsTest(unittest.TestCase):
|
| options.update_changelogs = False
|
| options.quiet = True
|
| options.reviewer = 'MOCK reviewer'
|
| - OutputCapture().assert_outputs(self, command.execute, [options, args, tool], expected_stdout=expected_stdout,
|
| - expected_stderr=expected_stderr, expected_exception=expected_exception, expected_logs=expected_logs)
|
| + OutputCapture().assert_outputs(
|
| + self, command.execute, [options, args, tool], expected_stdout=expected_stdout,
|
| + expected_stderr=expected_stderr, expected_exception=expected_exception, expected_logs=expected_logs)
|
|
|