summaryrefslogtreecommitdiff
path: root/jstests/core/nin.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/nin.js')
-rw-r--r--jstests/core/nin.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/core/nin.js b/jstests/core/nin.js
index 06582781591..7a25afd382e 100644
--- a/jstests/core/nin.js
+++ b/jstests/core/nin.js
@@ -50,7 +50,7 @@ doTest = function( n ) {
t.save( { a: { b: [ 20, 30 ] } } );
assert.eq( 1, t.find( { 'a.b': { $all: [ 20 ] } } ).count() , n + " O" );
assert.eq( 1, t.find( { 'a.b': { $all: [ 20, 30 ] } } ).count() , n + " P" );
-}
+};
doTest( "no index" );
t.drop();