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

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

Issue 2277343002: Refactor update_w3c_test_expectations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased 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 3435f8fc44f37f2f31158d23303c961b8259b652..20695fe5bfb770d8d60d5e4316a4ff61f4a9c4c0 100755
--- a/third_party/WebKit/Tools/Scripts/update-w3c-test-expectations
+++ b/third_party/WebKit/Tools/Scripts/update-w3c-test-expectations
@@ -6,7 +6,8 @@
import sys
from webkitpy.common import host
-from webkitpy.w3c.update_w3c_test_expectations import main
+from webkitpy.w3c.update_w3c_test_expectations import W3CExpectationsLineAdder
if __name__ == "__main__":
- sys.exit(main(host.Host()))
+ line_adder = W3CExpectationsLineAdder(host.Host())
+ sys.exit(line_adder.run())
« 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