summaryrefslogtreecommitdiff
path: root/jstests/core/coveredIndex2.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/coveredIndex2.js')
-rw-r--r--jstests/core/coveredIndex2.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/core/coveredIndex2.js b/jstests/core/coveredIndex2.js
index 41092e7d525..9ec3ce529ae 100644
--- a/jstests/core/coveredIndex2.js
+++ b/jstests/core/coveredIndex2.js
@@ -19,7 +19,7 @@ assert.eq(t.findOne({a: 1}).a, 1, "Cannot find right record");
assert.eq(t.count(), 2, "Not right length");
// use simple index
-t.createIndex({a: 1});
+t.ensureIndex({a: 1});
var plan = t.find({a: 1}).explain();
assert(!isIndexOnly(db, plan.queryPlanner.winningPlan),
"Find using covered index but all fields are returned");