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

Unified Diff: tracing/tracing/base/unittest/test_case.html

Issue 2390373003: Change all == to === and != to !== in trace viewer. (Closed)
Patch Set: Created 4 years, 2 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/base/unittest/test_case.html
diff --git a/tracing/tracing/base/unittest/test_case.html b/tracing/tracing/base/unittest/test_case.html
index f092f2a94613e722384307a646c225a77c182d0a..231ebfde0f7081a997e1c8b984bd60299ce86e88 100644
--- a/tracing/tracing/base/unittest/test_case.html
+++ b/tracing/tracing/base/unittest/test_case.html
@@ -29,7 +29,7 @@ tr.exportTo('tr.b.unittest', function() {
TestCase.parseFullyQualifiedName = function(fqn) {
var i = fqn.lastIndexOf('.');
- if (i == -1)
+ if (i === -1)
throw new Error('FullyQualifiedNames must have a period in them');
return {
suiteName: fqn.substr(0, i),

Powered by Google App Engine
This is Rietveld 408576698