summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/tools/blinkpy/tool/commands/flaky_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/tools/blinkpy/tool/commands/flaky_tests.py')
-rw-r--r--chromium/third_party/blink/tools/blinkpy/tool/commands/flaky_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/third_party/blink/tools/blinkpy/tool/commands/flaky_tests.py b/chromium/third_party/blink/tools/blinkpy/tool/commands/flaky_tests.py
index b4230ca198c..80b0cf5d0bf 100644
--- a/chromium/third_party/blink/tools/blinkpy/tool/commands/flaky_tests.py
+++ b/chromium/third_party/blink/tools/blinkpy/tool/commands/flaky_tests.py
@@ -116,7 +116,7 @@ class FlakyTests(Command):
port = tool.port_factory.get()
# Skip any tests which are mentioned in the dashboard but not in our checkout:
fs = tool.filesystem
- lines = [line for line in lines if fs.exists(fs.join(port.layout_tests_dir(), line.path))]
+ lines = [line for line in lines if fs.exists(fs.join(port.web_tests_dir(), line.path))]
test_names = [line.name for line in lines]
flakiness_dashboard_url = self.FLAKINESS_DASHBOARD_URL % ','.join(test_names)