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

Unified Diff: tracing/tracing/value/ui/histogram_set_view_test.html

Issue 2776653002: [ESLint] Fix violations when enabling curly rule in eslint. (Closed)
Patch Set: rebase Created 3 years, 9 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: tracing/tracing/value/ui/histogram_set_view_test.html
diff --git a/tracing/tracing/value/ui/histogram_set_view_test.html b/tracing/tracing/value/ui/histogram_set_view_test.html
index 67bd8af9586a042413dfc58e36f11232eeeae20f..95d1211fe0f0427ca1cb782a2fe923c4d71f828e 100644
--- a/tracing/tracing/value/ui/histogram_set_view_test.html
+++ b/tracing/tracing/value/ui/histogram_set_view_test.html
@@ -19,8 +19,9 @@ tr.b.unittest.testSuite(function() {
let histograms = new tr.v.HistogramSet();
let hist = new tr.v.Histogram('foo', tr.b.Unit.byName.normalizedPercentage);
- for (let i = 0; i < 1e2; ++i)
+ for (let i = 0; i < 1e2; ++i) {
hist.addSample(Math.random());
+ }
histograms.addHistogram(hist);
this.addHTMLOutput(view);
« no previous file with comments | « tracing/tracing/value/ui/histogram_set_table_test.html ('k') | tracing/tracing/value/ui/preferred_display_unit.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698