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

Unified Diff: Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py

Issue 576053002: [Nit] Renaming GenerateDashBoard to a more class sounding name DashBoardGenerator (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
« no previous file with comments | « Tools/Scripts/webkitpy/layout_tests/generate_results_dashboard.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
diff --git a/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py b/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
index f5eec493f4f29501302d47189ec004eca205aef3..77b417b890c6633766bf8fd12f4bdeb90af9e985 100644
--- a/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
+++ b/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
@@ -40,7 +40,7 @@ from webkitpy.layout_tests.models import test_run_results
from webkitpy.layout_tests.port import configuration_options, platform_options
from webkitpy.layout_tests.views import buildbot_results
from webkitpy.layout_tests.views import printing
-from webkitpy.layout_tests.generate_results_dashboard import GenerateDashBoard
+from webkitpy.layout_tests.generate_results_dashboard import DashBoardGenerator
_log = logging.getLogger(__name__)
@@ -77,7 +77,7 @@ def main(argv, stdout, stderr):
bot_printer = buildbot_results.BuildBotPrinter(stdout, options.debug_rwt_logging)
bot_printer.print_results(run_details)
- gen_dash_board = GenerateDashBoard(port)
+ gen_dash_board = DashBoardGenerator(port)
gen_dash_board.generate()
return run_details.exit_code
« no previous file with comments | « Tools/Scripts/webkitpy/layout_tests/generate_results_dashboard.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698