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

Unified Diff: Tools/GardeningServer/ui/ct-failure-card.html

Issue 407903002: Sort the failure names in sheriff-o-matic. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 | Tools/GardeningServer/ui/ct-failure-card-tests.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/ui/ct-failure-card.html
diff --git a/Tools/GardeningServer/ui/ct-failure-card.html b/Tools/GardeningServer/ui/ct-failure-card.html
index 7abefd99189b67f0c58ce3da2f36849516debf8d..a4364c3a614dfbf3f28c288291c4923f58fc254f 100644
--- a/Tools/GardeningServer/ui/ct-failure-card.html
+++ b/Tools/GardeningServer/ui/ct-failure-card.html
@@ -38,7 +38,7 @@ found in the LICENSE file.
failures: [],
testNames: function(failures) {
- return failures.map(function(failureAnalysis) { return failureAnalysis.testName });
+ return failures.map(function(failureAnalysis) { return failureAnalysis.testName }).sort();
},
examine: function() {
« no previous file with comments | « no previous file | Tools/GardeningServer/ui/ct-failure-card-tests.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698