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

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

Issue 2390373003: Change all == to === and != to !== in trace viewer. (Closed)
Patch Set: more changes from code review 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
« no previous file with comments | « tracing/tracing/base/unittest/test_case.html ('k') | tracing/tracing/base/unittest/test_suite.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/base/unittest/test_runner.html
diff --git a/tracing/tracing/base/unittest/test_runner.html b/tracing/tracing/base/unittest/test_runner.html
index 683372b2c0df31fbf60eea3a6945efdd9396844c..ac3b16f46e1605f5049a328b45faf275161ef95b 100644
--- a/tracing/tracing/base/unittest/test_runner.html
+++ b/tracing/tracing/base/unittest/test_runner.html
@@ -4,9 +4,9 @@ Copyright (c) 2014 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
+<link rel="import" href="/tracing/base/event_target.html">
<link rel="import" href="/tracing/base/raf.html">
<link rel="import" href="/tracing/base/timing.html">
-<link rel="import" href="/tracing/base/event_target.html">
<script>
'use strict';
@@ -139,7 +139,7 @@ tr.exportTo('tr.b.unittest', function() {
runOneTestCase_: function() {
this.runOneTestCaseScheduled_ = false;
- if (this.pendingTestCases_.length == 0) {
+ if (this.pendingTestCases_.length === 0) {
this.didFinishRunningAllTests_();
return;
}
« no previous file with comments | « tracing/tracing/base/unittest/test_case.html ('k') | tracing/tracing/base/unittest/test_suite.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698