summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/ns1.js
diff options
context:
space:
mode:
authorMike Grundy <michael.grundy@10gen.com>2016-02-04 12:29:53 -0500
committerMike Grundy <michael.grundy@10gen.com>2016-02-05 15:00:51 -0500
commitb4b016d9732a189fceddbcad5be378a7848d95b1 (patch)
treefeeff66064abfc886e2cc01f83262fe5be43b31e /jstests/noPassthrough/ns1.js
parent2689df80fa1a476b26d02937456d34191feb1087 (diff)
downloadmongo-b4b016d9732a189fceddbcad5be378a7848d95b1.tar.gz
SERVER-22341 fix jslint errors in jstests/noPassthrough with eslint --fix
Diffstat (limited to 'jstests/noPassthrough/ns1.js')
-rw-r--r--jstests/noPassthrough/ns1.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/jstests/noPassthrough/ns1.js b/jstests/noPassthrough/ns1.js
index 0eb07935bbc..ae5c6efd2f5 100644
--- a/jstests/noPassthrough/ns1.js
+++ b/jstests/noPassthrough/ns1.js
@@ -1,7 +1,7 @@
-load( "jstests/libs/slow_weekly_util.js" )
+load( "jstests/libs/slow_weekly_util.js" );
-testServer = new SlowWeeklyMongod( "ns1" )
+testServer = new SlowWeeklyMongod( "ns1" );
mydb = testServer.getDB( "test_ns1" );
check = function( n , isNew ){
@@ -13,7 +13,7 @@ check = function( n , isNew ){
assert.eq( 1 , coll.count() , "pop b: " + n );
assert.eq( n , coll.findOne()._id , "pop c: " + n );
return coll;
-}
+};
max = 0;
@@ -46,6 +46,6 @@ for ( i=0; i<its; i++ ){
print( i + "/" + its );
}
}
-print( "yay" )
+print( "yay" );
mydb.dropDatabase();