summaryrefslogtreecommitdiff
path: root/jstests/core/explain3.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/explain3.js')
-rw-r--r--jstests/core/explain3.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/jstests/core/explain3.js b/jstests/core/explain3.js
index 738f8570a0d..64db7686699 100644
--- a/jstests/core/explain3.js
+++ b/jstests/core/explain3.js
@@ -3,21 +3,21 @@
t = db.jstests_explain3;
t.drop();
-t.ensureIndex( {i:1} );
-for( var i = 0; i < 10000; ++i ) {
- t.save( {i:i,j:0} );
+t.ensureIndex({i: 1});
+for (var i = 0; i < 10000; ++i) {
+ t.save({i: i, j: 0});
}
-s = startParallelShell( "sleep( 20 ); db.jstests_explain3.dropIndex( {i:1} );" );
+s = startParallelShell("sleep( 20 ); db.jstests_explain3.dropIndex( {i:1} );");
try {
- t.find( {i:{$gt:-1},j:1} ).hint( {i:1} ).explain();
+ t.find({i: {$gt: -1}, j: 1}).hint({i: 1}).explain();
} catch (e) {
- print( "got exception" );
- printjson( e );
+ print("got exception");
+ printjson(e);
}
s();
// Sanity check to make sure mongod didn't seg fault.
-assert.eq( 10000, t.count() );
+assert.eq(10000, t.count());