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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults_unittest.py

Issue 1839193004: Run auto-formatter (autopep8) on webkitpy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 9 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/common/net/layouttestresults_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults_unittest.py
index 5c94c2faf672c119ae1918b8469e4e850d792aee..5fa22fe4773e598ae24b2c594c958b403d73d402 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults_unittest.py
@@ -95,8 +95,10 @@ class LayoutTestResultsTest(unittest.TestCase):
self.assertIsNone(LayoutTestResults.results_from_string(""))
def test_was_interrupted(self):
- self.assertTrue(LayoutTestResults.results_from_string('ADD_RESULTS({"tests":{},"interrupted":true});').run_was_interrupted())
- self.assertFalse(LayoutTestResults.results_from_string('ADD_RESULTS({"tests":{},"interrupted":false});').run_was_interrupted())
+ self.assertTrue(LayoutTestResults.results_from_string(
+ 'ADD_RESULTS({"tests":{},"interrupted":true});').run_was_interrupted())
+ self.assertFalse(LayoutTestResults.results_from_string(
+ 'ADD_RESULTS({"tests":{},"interrupted":false});').run_was_interrupted())
def test_chromium_revision(self):
self.assertEqual(LayoutTestResults.results_from_string(self.example_full_results_json).chromium_revision(), 1234)

Powered by Google App Engine
This is Rietveld 408576698