| Index: third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py
|
| index 152b5f74f9dc7b161a76efe9b60e841c55a1b9e6..31b7500f5dec870bbfbad27f5f7ad7b273f443e0 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py
|
| @@ -197,7 +197,7 @@ class DepsUpdater(object):
|
| Tests with "-manual" in the name are not considered manual tests
|
| if there is a corresponding JS automation file.
|
| """
|
| - basename_without_extension, _ = basename.rsplit('.', 1)
|
| + basename_without_extension, _ = self.fs.splitext(basename)
|
| if not basename_without_extension.endswith('-manual'):
|
| return False
|
| dir_from_wpt = fs.relpath(dirname, self.path_from_webkit_base('LayoutTests', 'imported', 'wpt'))
|
|
|