summaryrefslogtreecommitdiff
path: root/jstests/core/indexg.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/indexg.js')
-rw-r--r--jstests/core/indexg.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/core/indexg.js b/jstests/core/indexg.js
index a0709fd6568..f4b2e0cada1 100644
--- a/jstests/core/indexg.js
+++ b/jstests/core/indexg.js
@@ -7,7 +7,7 @@ f.save( { list: [1, 3] } );
doit = function() {
assert.eq( 1, f.count( { list: { $in: [1], $ne: 3 } } ) );
assert.eq( 1, f.count( { list: { $in: [1], $not:{$in: [3] } } } ) );
-}
+};
doit();
f.ensureIndex( { list: 1 } );
doit(); \ No newline at end of file