Title: [219322] trunk/Websites/perf.webkit.org
Revision
219322
Author
rn...@webkit.org
Date
2017-07-10 20:46:16 -0700 (Mon, 10 Jul 2017)

Log Message

Address Antti's review comment.

* public/v3/models/analysis-results.js:
(AnalysisResults.prototype.containsTest):

Modified Paths

Diff

Modified: trunk/Websites/perf.webkit.org/ChangeLog (219321 => 219322)


--- trunk/Websites/perf.webkit.org/ChangeLog	2017-07-11 03:45:00 UTC (rev 219321)
+++ trunk/Websites/perf.webkit.org/ChangeLog	2017-07-11 03:46:16 UTC (rev 219322)
@@ -1,5 +1,12 @@
 2017-07-10  Ryosuke Niwa  <rn...@webkit.org>
 
+        Address Antti's review comment.
+
+        * public/v3/models/analysis-results.js:
+        (AnalysisResults.prototype.containsTest):
+
+2017-07-10  Ryosuke Niwa  <rn...@webkit.org>
+
         A/B testing results page show results for the top-level tests instead of the one being analyzed
         https://bugs.webkit.org/show_bug.cgi?id=174304
 

Modified: trunk/Websites/perf.webkit.org/public/v3/models/analysis-results.js (219321 => 219322)


--- trunk/Websites/perf.webkit.org/public/v3/models/analysis-results.js	2017-07-11 03:45:00 UTC (rev 219321)
+++ trunk/Websites/perf.webkit.org/public/v3/models/analysis-results.js	2017-07-11 03:46:16 UTC (rev 219322)
@@ -20,7 +20,7 @@
     containsTest(test)
     {
         console.assert(test instanceof Test);
-        for (let metric of test.metrics()) {
+        for (const metric of test.metrics()) {
             if (metric.id() in this._metricToBuildMap)
                 return true;
         }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to