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

Unified Diff: tracing/tracing/base/math/quad_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/base/math/quad.html ('k') | tracing/tracing/base/math/range.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/base/math/quad_test.html
diff --git a/tracing/tracing/base/math/quad_test.html b/tracing/tracing/base/math/quad_test.html
index 8549137c2c09065cda34b36def4ed70d3d73898f..dcc1997877708b9bab55bc928af058b77a3c49b2 100644
--- a/tracing/tracing/base/math/quad_test.html
+++ b/tracing/tracing/base/math/quad_test.html
@@ -15,8 +15,7 @@ function assertQuadEquals(a, b, opt_message) {
ok &= a.p2[0] === b.p2[0] && a.p2[1] === b.p2[1];
ok &= a.p3[0] === b.p3[0] && a.p3[1] === b.p3[1];
ok &= a.p4[0] === b.p4[0] && a.p4[1] === b.p4[1];
- if (ok)
- return;
+ if (ok) return;
var message = opt_message || 'Expected "' + a.toString() +
'", got "' + b.toString() + '"';
assert.fail(a, b, message);
« no previous file with comments | « tracing/tracing/base/math/quad.html ('k') | tracing/tracing/base/math/range.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698