Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Unified Diff: webkit/tools/layout_tests/flakiness_dashboard.html

Issue 848007: Flakiness dashboard: use startsWith rather than contains to match expectatio... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/layout_tests/flakiness_dashboard.html
===================================================================
--- webkit/tools/layout_tests/flakiness_dashboard.html (revision 41363)
+++ webkit/tools/layout_tests/flakiness_dashboard.html (working copy)
@@ -894,7 +894,7 @@
addTestToAllExpectations(path, expectations);
} else {
for (var test in allTests) {
- if (stringContains(test, path)) {
+ if (startsWith(test, path)) {
pathMatchesAnyTest = true;
addTestToAllExpectations(test, expectations);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698