diff options
author | samantharitter <samantha.ritter@10gen.com> | 2016-09-22 17:29:34 -0400 |
---|---|---|
committer | samantharitter <samantha.ritter@10gen.com> | 2016-09-22 17:29:34 -0400 |
commit | 0ef4cce98ab2bb45e2fa6e947014795148925d74 (patch) | |
tree | 88db323a5ccc259ac8142dd76389a673c15fa4b4 | |
parent | c4e24cbbfd3948273c27726c0170b562eca30bb4 (diff) | |
download | mongo-0ef4cce98ab2bb45e2fa6e947014795148925d74.tar.gz |
fix lint
-rw-r--r-- | jstests/core/evalh.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/jstests/core/evalh.js b/jstests/core/evalh.js index 1eb928bf47f..2a2b52bc5c3 100644 --- a/jstests/core/evalh.js +++ b/jstests/core/evalh.js @@ -9,6 +9,7 @@ // Call the native implementation auth function and verify it does not exist under the db.eval // javascript context. - assert.throws( function() { db.eval('db.getMongo().auth("reader", "reader")'); }); + assert.throws(function() { + db.eval('db.getMongo().auth("reader", "reader")'); + }); })(); - |