| Index: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/flaky_tests.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/flakytests.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/flaky_tests.py
|
| similarity index 98%
|
| rename from third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/flakytests.py
|
| rename to third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/flaky_tests.py
|
| index 71469ce09c9304452536d543f055eab8209ad75b..172570c1a4833dde315ce2d7d5137147c0ba5bca 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/flakytests.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/flaky_tests.py
|
| @@ -110,7 +110,7 @@ Flakiness dashboard: %s
|
| port = tool.port_factory.get()
|
| # Skip any tests which are mentioned in the dashboard but not in our checkout:
|
| fs = tool.filesystem
|
| - lines = filter(lambda line: fs.exists(fs.join(port.layout_tests_dir(), line.path)), lines)
|
| + lines = [line for line in lines if fs.exists(fs.join(port.layout_tests_dir(), line.path))]
|
|
|
| test_names = [line.name for line in lines]
|
| flakiness_dashboard_url = self.FLAKINESS_DASHBOARD_URL % ','.join(test_names)
|
|
|