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

Unified Diff: tracing/tracing/base/unittest/text_test_results.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_suite.html ('k') | tracing/tracing/base/utils.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/base/unittest/text_test_results.html
diff --git a/tracing/tracing/base/unittest/text_test_results.html b/tracing/tracing/base/unittest/text_test_results.html
index c1cae626aea4a3f2ea3f6e7b5c695213e4ac60af..3c286d75fbe5da841f716eea5aa501769016778b 100644
--- a/tracing/tracing/base/unittest/text_test_results.html
+++ b/tracing/tracing/base/unittest/text_test_results.html
@@ -4,8 +4,8 @@ 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/utils.html">
<link rel="import" href="/tracing/base/unittest/constants.html">
+<link rel="import" href="/tracing/base/utils.html">
<link rel="import" href="/tracing/ui/base/ui.html">
<script>
'use strict';
@@ -91,12 +91,12 @@ tr.exportTo('tr.b.unittest', function() {
this.write_('Ran ' + this.numTestsThatRan + ' tests\n');
if (this.numTestsThatFailed > 0) {
- var flakyString = this.numFlakyTests == 0 ? '' :
+ var flakyString = this.numFlakyTests === 0 ? '' :
' flaky=' + this.numFlakyTests;
this.write_('\nFAILED (errors=' + this.numTestsThatFailed +
flakyString + ')');
} else {
- var flakyString = this.numFlakyTests == 0 ? '' :
+ var flakyString = this.numFlakyTests === 0 ? '' :
' (flaky=' + this.numFlakyTests + ')';
this.write_('\nOK' + flakyString);
}
« no previous file with comments | « tracing/tracing/base/unittest/test_suite.html ('k') | tracing/tracing/base/utils.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698