Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1321)

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/command_test.py

Issue 2329263002: Run format-webkitpy and fix long lines. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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)

Powered by Google App Engine
This is Rietveld 408576698