summaryrefslogtreecommitdiff
path: root/jstests/core/index_many.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/index_many.js')
-rw-r--r--jstests/core/index_many.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/jstests/core/index_many.js b/jstests/core/index_many.js
index 70f39c4719c..a9eddbb32f1 100644
--- a/jstests/core/index_many.js
+++ b/jstests/core/index_many.js
@@ -34,10 +34,8 @@ function f() {
assert(lim == 64, "not 64 indexes");
assert(t.find({ x: 9 }).length() == 1, "b");
- assert(t.find({ x: 9 }).explain().cursor.match(/Btree/), "not using index?");
assert(t.find({ y: 99 }).length() == 2, "y idx");
- assert(t.find({ y: 99 }).explain().cursor.match(/Btree/), "not using y index?");
/* check that renamecollection remaps all the indexes right */
assert(t.renameCollection("many2").ok, "rename failed");