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

Unified Diff: Tools/GardeningServer/ui/ct-builder-grid.html

Issue 402603007: Get sheriff-o-matic data from auto-sheriff.appspot.com. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: address review comments 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 | « Tools/GardeningServer/scripts/svn-log_unittests.js ('k') | Tools/GardeningServer/ui/ct-commit.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/ui/ct-builder-grid.html
diff --git a/Tools/GardeningServer/ui/ct-builder-grid.html b/Tools/GardeningServer/ui/ct-builder-grid.html
index e4d332da0f8fd34778438a97f48da452768bee48..81a8b696aa94893b4e7b4b35c06275a5076b8817 100644
--- a/Tools/GardeningServer/ui/ct-builder-grid.html
+++ b/Tools/GardeningServer/ui/ct-builder-grid.html
@@ -125,13 +125,10 @@ found in the LICENSE file.
passingRevisions.push(failure.newestPassingRevision);
var results = failure.resultNodesByBuilder;
Object.keys(results, (function(builder) {
- var result = results[builder];
- if (!result.is_unexpected)
- return;
-
- if (!Object.has(this.resultTypes, result.actual))
- this.resultTypes[result.actual] = {};
- this.resultTypes[result.actual][builder] =
+ var result = results[builder].actual;
+ if (!Object.has(this.resultTypes, result))
+ this.resultTypes[result] = {};
+ this.resultTypes[result][builder] =
config.builders[builder];
}).bind(this));
}, this);
« no previous file with comments | « Tools/GardeningServer/scripts/svn-log_unittests.js ('k') | Tools/GardeningServer/ui/ct-commit.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698