diff options
Diffstat (limited to 'jstests/index_check5.js')
-rw-r--r-- | jstests/index_check5.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/index_check5.js b/jstests/index_check5.js index 90ac301..eabb929 100644 --- a/jstests/index_check5.js +++ b/jstests/index_check5.js @@ -14,4 +14,4 @@ t.save( { "name" : "Player2" , assert.eq( 2 , t.find( { "scores.level": 2, "scores.score": {$gt:30} } ).itcount() , "A" ); t.ensureIndex( { "scores.level" : 1 , "scores.score" : 1 } ); -assert.eq( 1 , t.find( { "scores.level": 2, "scores.score": {$gt:30} } ).itcount() , "B" ); +assert.eq( 2 , t.find( { "scores.level": 2, "scores.score": {$gt:30} } ).itcount() , "B" ); |