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

Unified Diff: Tools/TestResultServer/static-dashboards/flakiness_dashboard.js

Issue 23694024: Remove the duplicate 'layout-test-results' path from the archived results. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: merge to HEAD Created 7 years, 3 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 | « Tools/Scripts/webkitpy/common/config/urls.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/TestResultServer/static-dashboards/flakiness_dashboard.js
diff --git a/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js b/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js
index dd9f64f1c79e8415daebc157bc2b4982965b06e6..32455250230b0dc098eb7e900a909a1bd97b45e6 100644
--- a/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js
+++ b/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js
@@ -1121,8 +1121,7 @@ function loadExpectationsLayoutTests(test, expectationsContainer)
var testWithoutSuffix = test.substring(0, test.lastIndexOf('.'));
for (var builder in currentBuilders()) {
- // FIXME: The duplicate "layout-test-results" is due to crbug.com/285572.
- var actualResultsBase = TEST_RESULTS_BASE_PATH + currentBuilders()[builder] + '/results/layout-test-results/layout-test-results/';
+ var actualResultsBase = TEST_RESULTS_BASE_PATH + currentBuilders()[builder] + '/results/layout-test-results/';
ACTUAL_RESULT_SUFFIXES.forEach(function(suffix) {{
addExpectationItem(expectationsContainers, expectationsContainer, actualResultsBase + testWithoutSuffix + '-' + suffix, builder);
}})
« no previous file with comments | « Tools/Scripts/webkitpy/common/config/urls.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698