summaryrefslogtreecommitdiff
path: root/jstests
diff options
context:
space:
mode:
Diffstat (limited to 'jstests')
-rw-r--r--jstests/core/capped5.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/core/capped5.js b/jstests/core/capped5.js
index 37b776ee1ca..8541901f34c 100644
--- a/jstests/core/capped5.js
+++ b/jstests/core/capped5.js
@@ -20,7 +20,7 @@ t.drop();
db.createCollection( tn , {capped: true, size: 1024 * 1024 * 1 } );
t.insert( { _id : 5 , x : 11 } );
t.insert( { _id : 5 , x : 12 } );
-assert.eq( 1, db.system.indexes.count( {ns:"test."+tn} ) ); //now we assume _id index
+assert.eq( 1, t.getIndexes().length ); //now we assume _id index
assert.eq( 1, t.find().toArray().length ); //_id index unique, so second insert fails
t.drop();
@@ -28,7 +28,7 @@ db.createCollection( tn , {capped: true, size: 1024 * 1024 * 1 } );
t.insert( { _id : 5 , x : 11 } );
t.insert( { _id : 6 , x : 12 } );
t.ensureIndex( { x:1 }, {unique:true} );
-assert.eq( 2, db.system.indexes.count( {ns:"test."+tn} ) ); //now we assume _id index
+assert.eq( 2, t.getIndexes().length ); //now we assume _id index
assert.eq( 2, t.find().hint( {x:1} ).toArray().length );
// SERVER-525 (closed) unique indexes in capped collection