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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/testharness_results.py

Issue 2256793002: Make docstrings more consistent using format-webkitpy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make indentation of final quote based on parse tree (indentation prior to docstring node) rather th… 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/layout_tests/models/testharness_results.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/testharness_results.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/testharness_results.py
index 3d45fb8751b7405c7eb0a287bb51622c4990e8e1..ccebc371c4605b6cbf660c5269c08b3ab5a93c23 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/testharness_results.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/testharness_results.py
@@ -11,9 +11,7 @@ TESTHARNESSREPORT_FOOTER = 'Harness: the test ran to completion.'
def is_testharness_output(content_text):
- """
- Returns whether the content_text in parameter is a testharness output.
- """
+ """Returns whether the content_text in parameter is a testharness output."""
# Leading and trailing white spaces are accepted.
lines = content_text.strip().splitlines()
@@ -32,8 +30,7 @@ def is_testharness_output(content_text):
def is_testharness_output_passing(content_text):
- """
- Returns whether the content_text in parameter is a passing testharness output.
+ """Returns whether the content_text in parameter is a passing testharness output.
Note:
It is expected that the |content_text| is a testharness output.
@@ -82,8 +79,7 @@ def is_testharness_output_passing(content_text):
def is_testharness_output_with_console_errors_or_warnings(content_text):
- """
- Returns whether the content_text in parameter is a testharness output with
+ """Returns whether the content_text in parameter is a testharness output with
console errors.
Note:

Powered by Google App Engine
This is Rietveld 408576698