| 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())
|
|
|