summaryrefslogtreecommitdiff
path: root/jstests/replsets/capped_id.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/replsets/capped_id.js')
-rw-r--r--jstests/replsets/capped_id.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/jstests/replsets/capped_id.js b/jstests/replsets/capped_id.js
index 8708f5752f8..ee05e810d59 100644
--- a/jstests/replsets/capped_id.js
+++ b/jstests/replsets/capped_id.js
@@ -40,9 +40,12 @@ var slave1db = slave1.getDB(dbname);
var slave2db = slave2.getDB(dbname);
function countIdIndexes(theDB, coll) {
- return theDB[coll].getIndexes().filter(function(idx) {
- return friendlyEqual(idx.key, {_id: 1});
- }).length;
+ return theDB[coll]
+ .getIndexes()
+ .filter(function(idx) {
+ return friendlyEqual(idx.key, {_id: 1});
+ })
+ .length;
}
var numtests = 4;