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

Unified Diff: third_party/WebKit/Tools/Scripts/update-w3c-test-expectations

Issue 2253163002: Minor refactoring: Move set-up of host and port into update_w3c_test_expectations.py. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 | « no previous file | third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Tools/Scripts/update-w3c-test-expectations
diff --git a/third_party/WebKit/Tools/Scripts/update-w3c-test-expectations b/third_party/WebKit/Tools/Scripts/update-w3c-test-expectations
index c872fd0a286c8a03a38c15bd458e2499f99c4f04..3435f8fc44f37f2f31158d23303c961b8259b652 100755
--- a/third_party/WebKit/Tools/Scripts/update-w3c-test-expectations
+++ b/third_party/WebKit/Tools/Scripts/update-w3c-test-expectations
@@ -6,11 +6,7 @@
import sys
from webkitpy.common import host
-from webkitpy.common.checkout.scm.git import Git
from webkitpy.w3c.update_w3c_test_expectations import main
if __name__ == "__main__":
- host = host.Host()
- host.initialize_scm()
- port = host.port_factory.get()
- sys.exit(main(host, port))
+ sys.exit(main(host.Host()))
« no previous file with comments | « no previous file | third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698