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

Unified Diff: ports/gdb/tests/gdb_background_test.js

Issue 1415743013: Run jshint over all JavaScript files (Closed) Base URL: https://chromium.googlesource.com/external/naclports.git@repo_conf
Patch Set: Created 5 years, 1 month 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 | « ports/gdb/tests/debugger_test.js ('k') | ports/gforth/gforth.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ports/gdb/tests/gdb_background_test.js
diff --git a/ports/gdb/tests/gdb_background_test.js b/ports/gdb/tests/gdb_background_test.js
index 9d99a2f9c31ac34ac437108e272c1c0a13f03a3c..75d17538de443c76358b04c696066092ef3cda45 100644
--- a/ports/gdb/tests/gdb_background_test.js
+++ b/ports/gdb/tests/gdb_background_test.js
@@ -4,6 +4,10 @@
* found in the LICENSE file.
*/
+/* globals ASSERT_EQ, ASSERT_LE, ASSERT_GE, EXPECT_EQ, TEST_F, TEST */
+/* globals chrometest, TestModuleTest, waitForExtraModuleCount */
+/* globals waitIgnoringTerminal */
+
'use strict';
function GdbExtensionTestModuleTest() {
@@ -125,7 +129,7 @@ GdbExtensionTestModuleTest.prototype.waitForGdbPrompt = function(min, max) {
GdbExtensionTestModuleTest.prototype.waitForGdbReply = function(lines) {
var self = this;
function checkLine() {
- if (lines.length == 0) {
+ if (lines.length === 0) {
return;
}
return Promise.resolve().then(function() {
« no previous file with comments | « ports/gdb/tests/debugger_test.js ('k') | ports/gforth/gforth.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698