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

Unified Diff: tracing/tracing/extras/importer/etw/etw_importer_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/extras/importer/etw/etw_importer_test.html
diff --git a/tracing/tracing/extras/importer/etw/etw_importer_test.html b/tracing/tracing/extras/importer/etw/etw_importer_test.html
index 748e9748f644c74b89f5166b9e6af6dda3f67378..0fa0b3dc41209cbed33b6500fd8a967bfa956817 100644
--- a/tracing/tracing/extras/importer/etw/etw_importer_test.html
+++ b/tracing/tracing/extras/importer/etw/etw_importer_test.html
@@ -205,8 +205,9 @@ tr.b.unittest.testSuite(function() {
var decoder = importer.decoder_;
decoder.reset('AAECAwQFBgc=');
var bytes = decoder.decodeBytes(8);
- for (var i = 0; i < bytes.length; ++i)
+ for (var i = 0; i < bytes.length; ++i) {
assert.equal(bytes[i], i);
+ }
});
test('decodeSID', function() {
« no previous file with comments | « tracing/tracing/extras/importer/etw/etw_importer.html ('k') | tracing/tracing/extras/importer/etw/eventtrace_parser.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698