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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/png_unittest.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/style/checkers/png_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/png_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/png_unittest.py
index 1251971a8bc847b4c029a6fde8d2157960980b12..89f78c3dee0767f61ef4e2227669061d049a4cfa 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/png_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/png_unittest.py
@@ -65,5 +65,6 @@ class PNGCheckerTest(unittest.TestCase):
checker = PNGChecker(file_path, mock_handle_style_error, MockSystemHost(os_name='linux', filesystem=fs))
checker.check()
self.assertEqual(len(errors), 1)
- self.assertEqual(errors[0], (0, 'image/png', 5,
- 'Image lacks a checksum. Generate pngs using run-webkit-tests to ensure they have a checksum.'))
+ self.assertEqual(
+ errors[0],
+ (0, 'image/png', 5, 'Image lacks a checksum. Generate pngs using run-webkit-tests to ensure they have a checksum.'))

Powered by Google App Engine
This is Rietveld 408576698