summaryrefslogtreecommitdiff
path: root/jstests/explain1.js
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2010-09-14 14:03:52 -0400
committerEliot Horowitz <eliot@10gen.com>2010-09-14 14:59:13 -0400
commit3cd49a8b0fac89c9d006ca86025cc6e2ac915bb9 (patch)
treec242c611a5bfa48ab2b2cbde1792d58082d1c582 /jstests/explain1.js
parentb97c1d90c17b1f92ecc888420b227a9b39cb2697 (diff)
downloadmongo-3cd49a8b0fac89c9d006ca86025cc6e2ac915bb9.tar.gz
fix explain/limin test
Diffstat (limited to 'jstests/explain1.js')
-rw-r--r--jstests/explain1.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/explain1.js b/jstests/explain1.js
index 6d5ac55b9c3..2460c28733c 100644
--- a/jstests/explain1.js
+++ b/jstests/explain1.js
@@ -20,5 +20,5 @@ assert.eq( 20 , t.find( q ).limit(20).itcount() , "F" );
assert.eq( 49 , t.find(q).explain().n , "G" );
assert.eq( 20 , t.find(q).limit(20).explain().n , "H" );
-assert.eq( 49 , t.find(q).limit(-20).explain().n , "I" );
+assert.eq( 20 , t.find(q).limit(-20).explain().n , "I" );