summaryrefslogtreecommitdiff
path: root/jstests/core/list_collections1.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/list_collections1.js')
-rw-r--r--jstests/core/list_collections1.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/jstests/core/list_collections1.js b/jstests/core/list_collections1.js
index f23331b97ce..33377c2db97 100644
--- a/jstests/core/list_collections1.js
+++ b/jstests/core/list_collections1.js
@@ -58,20 +58,6 @@
assert(!collObj.hasOwnProperty("idIndex"), tojson(collObj));
//
- // Test basic command output for system.indexes.
- //
-
- collObj = res.cursor.firstBatch.filter(function(c) {
- return c.name === "system.indexes";
- })[0];
- if (collObj) {
- assert.eq("object", typeof(collObj.options), tojson(collObj));
- assert.eq("collection", collObj.type, tojson(collObj));
- assert.eq(false, collObj.info.readOnly, tojson(collObj));
- assert(!collObj.hasOwnProperty("idIndex"), tojson(collObj));
- }
-
- //
// Test basic usage with DBCommandCursor.
//