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

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

Issue 1783073002: Run auto-formatter on files in webkitpy/layout_tests/. (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/layout_tests/generate_results_dashboard.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/generate_results_dashboard.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/generate_results_dashboard.py
index 8de8003ec4a3f15a71f5a983b21fc29a64398dd4..7610cb7de66bf0d0ddd7a0952b0a027a4848b2a1 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/generate_results_dashboard.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/generate_results_dashboard.py
@@ -105,7 +105,8 @@ class DashBoardGenerator(object):
def _copy_dashboard_html(self):
dashboard_file = self._filesystem.join(self._results_directory, 'dashboard.html')
- dashboard_html_file_path = self._filesystem.join(self._port.layout_tests_dir(), 'fast/harness/archived-results-dashboard.html')
+ dashboard_html_file_path = self._filesystem.join(
+ self._port.layout_tests_dir(), 'fast/harness/archived-results-dashboard.html')
if not self._filesystem.exists(dashboard_file):
if self._filesystem.exists(dashboard_html_file_path):
self._filesystem.copyfile(dashboard_html_file_path, dashboard_file)
@@ -144,7 +145,8 @@ class DashBoardGenerator(object):
# There must be at least one archived result to be processed
if self._current_result_json_dict:
- process_json_data = ProcessJsonData(self._current_result_json_dict, self._old_failing_results_list, self._old_full_results_list)
+ process_json_data = ProcessJsonData(self._current_result_json_dict,
+ self._old_failing_results_list, self._old_full_results_list)
self._final_result = process_json_data.generate_archived_result()
final_json = json.dumps(self._final_result)
final_json = 'ADD_RESULTS(' + final_json + ');'

Powered by Google App Engine
This is Rietveld 408576698