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

Unified Diff: tracing/tracing/base/iteration_helpers_test.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/iteration_helpers_test.html
diff --git a/tracing/tracing/base/iteration_helpers_test.html b/tracing/tracing/base/iteration_helpers_test.html
index 77d32d106513806ebbe0dea4df94608bf73d07df..28d030b5db3ab38d1dcf50e148a3f985afa0ecbb 100644
--- a/tracing/tracing/base/iteration_helpers_test.html
+++ b/tracing/tracing/base/iteration_helpers_test.html
@@ -288,7 +288,7 @@ tr.b.unittest.testSuite(function() {
var that = this;
var k = tr.b.findFirstKeyInDictMatching(dict, function(key, value) {
assert.equal(this, that);
- return value == 2;
+ return value === 2;
}, this);
assert.equal(k, 'b');

Powered by Google App Engine
This is Rietveld 408576698