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

Unified Diff: tracing/tracing/extras/importer/linux_perf/exynos_parser_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/extras/importer/linux_perf/exynos_parser_test.html
diff --git a/tracing/tracing/extras/importer/linux_perf/exynos_parser_test.html b/tracing/tracing/extras/importer/linux_perf/exynos_parser_test.html
index c27e7c65a93e5da356d06373acfc9713de970f8a..1e5d16cd1db6e9e49652915c8917eaad947f4b8c 100644
--- a/tracing/tracing/extras/importer/linux_perf/exynos_parser_test.html
+++ b/tracing/tracing/extras/importer/linux_perf/exynos_parser_test.html
@@ -67,8 +67,8 @@ tr.b.unittest.testSuite(function() {
assert.equal(threads.length, 2);
// in the test data, event of fb=26 occurs first, so it's thread[0]
- var gfxFbId26Thread = threads[0]; // thread where fb == 26
- var gfxFbId25Thread = threads[1]; // thread where fb == 25
+ var gfxFbId26Thread = threads[0]; // thread where fb === 26
+ var gfxFbId25Thread = threads[1]; // thread where fb === 25
assert.equal(gfxFbId25Thread.name, 'exynos_flip_state (pipe:0, fb:25)');
assert.equal(gfxFbId26Thread.name, 'exynos_flip_state (pipe:0, fb:26)');
// Every state (except for 'flipped') will start a new slice.
@@ -114,8 +114,8 @@ tr.b.unittest.testSuite(function() {
assert.equal(threads.length, 2);
// in the test data, event of fb=26 occurs first, so it's thread[0]
- var gfxFbId26Thread = threads[0]; // thread where fb == 26
- var gfxFbId25Thread = threads[1]; // thread where fb == 25
+ var gfxFbId26Thread = threads[0]; // thread where fb === 26
+ var gfxFbId25Thread = threads[1]; // thread where fb === 25
assert.equal(gfxFbId25Thread.name, 'exynos_flip_state (pipe:0, fb:25)');
assert.equal(gfxFbId26Thread.name, 'exynos_flip_state (pipe:0, fb:26)');
// Every state (except for 'flipped') will start a new slice.

Powered by Google App Engine
This is Rietveld 408576698