summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Grundy <michael.grundy@10gen.com>2016-02-04 12:29:26 -0500
committerMike Grundy <michael.grundy@10gen.com>2016-02-05 15:00:50 -0500
commitb56e96fdb89aa9f036901b9653bf900595c1956a (patch)
tree2b5e6eff8f1f3e4081cb31d74fd6709c2eb3ecb6
parenta0997b39c6033dbd1df2f9e32018361fcc25e392 (diff)
downloadmongo-b56e96fdb89aa9f036901b9653bf900595c1956a.tar.gz
SERVER-22341 fix jslint errors in jstests/httpinterface with eslint --fix
-rw-r--r--jstests/httpinterface/httpinterface.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/httpinterface/httpinterface.js b/jstests/httpinterface/httpinterface.js
index d3804cc40f1..38ca96b6be6 100644
--- a/jstests/httpinterface/httpinterface.js
+++ b/jstests/httpinterface/httpinterface.js
@@ -11,9 +11,9 @@ tryHttp = function() {
}
// if we managed to start and connect a new mongo then the web interface is working
return true;
-}
+};
-assert.throws(function() {assert.soon(tryHttp, "tryHttp failed, like we expected it to")});
+assert.throws(function() {assert.soon(tryHttp, "tryHttp failed, like we expected it to");});
MongoRunner.stopMongod(conn);