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

Unified Diff: tracing/tracing/model/thread_test.html

Issue 2776653002: [ESLint] Fix violations when enabling curly rule in eslint. (Closed)
Patch Set: Fix test 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/model/thread_test.html
diff --git a/tracing/tracing/model/thread_test.html b/tracing/tracing/model/thread_test.html
index 953e30f9947f95ce0d622c887c9a2cc6a5c32803..3b3b1eba3144d21b8b7eefc798f37053550f72e7 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);

Powered by Google App Engine
This is Rietveld 408576698