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

Unified Diff: appengine/findit/templates/flake/result.html

Issue 2369333002: [Findit] Capture versionized metadata for master_flake_analysis (Closed)
Patch Set: Created 4 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
Index: appengine/findit/templates/flake/result.html
diff --git a/appengine/findit/templates/flake/result.html b/appengine/findit/templates/flake/result.html
index 6cfe52f41420b2f221b8c3a064899b03454e2b03..9a488bb0c1b674281d4bf3b93d9793d7c25eb90a 100644
--- a/appengine/findit/templates/flake/result.html
+++ b/appengine/findit/templates/flake/result.html
@@ -15,7 +15,7 @@
findit.masterName = "{{ master_name }}";
findit.builderName = "{{ builder_name }}";
findit.regressedBuildNumber = {{ suspected_flake_build_number or -1 }};
- findit.passRates = {{ success_rates | tojson | safe }};
+ findit.passRates = {{ pass_rates | tojson | safe }};
$(document).ready(function() {
if (findit.passRates.length == 0) {
@@ -24,7 +24,6 @@
}
// Convert pass rate from [0, 1] to a percentage.
- // TODO: -1 means that the test doesn't exist at the build.
stgao 2016/09/28 00:03:24 Please keep this. I need to fix it.
lijeffrey 2016/09/28 03:12:31 Oops sorry I didn't realize I accidentally deleted
$.each(findit.passRates, function(index, value) {
value[1] = (value[1] * 100).toFixed(0);
});

Powered by Google App Engine
This is Rietveld 408576698