diff options
author | Eliot Horowitz <eliot@10gen.com> | 2014-07-30 12:53:14 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2014-08-01 10:44:29 -0400 |
commit | 02948ba65855df43bfbdee5c4e0f834c678532b7 (patch) | |
tree | 2d5d8f238d6099deed0f8d64d13adbdd3661e748 /jstests | |
parent | 77281ef19fd778813c7b87d22dd51f3da7292e64 (diff) | |
download | mongo-02948ba65855df43bfbdee5c4e0f834c678532b7.tar.gz |
SERVER-13635: make some capped test not use system.
Diffstat (limited to 'jstests')
-rw-r--r-- | jstests/core/capped5.js | 4 |
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 |