| Index: third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py
|
| index 09d28116c2ccf2ede200aa07f6aa6ea3a76a1aaf..2c125cda7ceb1ca40853df5785cd7e5a1c7472cd 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py
|
| @@ -17,7 +17,7 @@ import logging
|
|
|
| from webkitpy.common.net.git_cl import GitCL
|
| from webkitpy.common.net.rietveld import Rietveld
|
| -from webkitpy.common.webkit_finder import WebKitFinder
|
| +from webkitpy.common.blink_finder import BlinkFinder
|
| from webkitpy.layout_tests.models.test_expectations import TestExpectationLine
|
| from webkitpy.w3c.test_parser import TestParser
|
|
|
| @@ -29,7 +29,7 @@ class W3CExpectationsLineAdder(object):
|
| def __init__(self, host):
|
| self.host = host
|
| self.host.initialize_scm()
|
| - self.finder = WebKitFinder(self.host.filesystem)
|
| + self.finder = BlinkFinder(self.host.filesystem)
|
|
|
| def run(self, args=None):
|
| parser = argparse.ArgumentParser(description=__doc__)
|
| @@ -306,7 +306,7 @@ class W3CExpectationsLineAdder(object):
|
| _log.debug('Tests to rebaseline: %r', tests_to_rebaseline)
|
| if tests_to_rebaseline:
|
| webkit_patch = self.host.filesystem.join(
|
| - self.finder.chromium_base(), self.finder.webkit_base(), self.finder.path_to_script('webkit-patch'))
|
| + self.finder.chromium_base(), self.finder.blink_base(), self.finder.path_to_script('webkit-patch'))
|
| self.host.executive.run_command([
|
| 'python',
|
| webkit_patch,
|
|
|