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

Unified Diff: tracing/tracing/model/thread_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
« no previous file with comments | « tracing/tracing/model/thread_slice.html ('k') | tracing/tracing/model/thread_time_slice.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/model/thread_test.html
diff --git a/tracing/tracing/model/thread_test.html b/tracing/tracing/model/thread_test.html
index d66643d885102f29aa642a95db97e2221a0124e8..5ae1834cdf10b02ae4840b20dfb4ac9c63ef27c8 100644
--- a/tracing/tracing/model/thread_test.html
+++ b/tracing/tracing/model/thread_test.html
@@ -66,8 +66,9 @@ tr.b.unittest.testSuite(function() {
var shiftCount = 0;
t.asyncSliceGroup.shiftTimestampsForward = function(ts) {
- if (ts === 0.32)
+ if (ts === 0.32) {
shiftCount++;
+ }
};
t.shiftTimestampsForward(0.32);
@@ -85,8 +86,9 @@ tr.b.unittest.testSuite(function() {
var shiftCount = 0;
t.asyncSliceGroup.shiftTimestampsForward = function(ts) {
- if (ts === 0.32)
+ if (ts === 0.32) {
shiftCount++;
+ }
};
t.shiftTimestampsForward(0.32);
« no previous file with comments | « tracing/tracing/model/thread_slice.html ('k') | tracing/tracing/model/thread_time_slice.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698