summaryrefslogtreecommitdiff
path: root/jstests/core/exists9.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/exists9.js')
-rw-r--r--jstests/core/exists9.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/jstests/core/exists9.js b/jstests/core/exists9.js
index 444bcf731a1..3b245cd4188 100644
--- a/jstests/core/exists9.js
+++ b/jstests/core/exists9.js
@@ -12,7 +12,7 @@ assert.eq(1, t.count({'a.b': {$exists: false}}));
assert.eq(0, t.count({'a.b': {$exists: true}}));
// With index.
-t.ensureIndex({'a.b': 1});
+t.createIndex({'a.b': 1});
assert.eq(1, t.find({'a.b': {$exists: false}}).hint({'a.b': 1}).itcount());
assert.eq(0, t.find({'a.b': {$exists: true}}).hint({'a.b': 1}).itcount());
@@ -25,7 +25,7 @@ assert.eq(1, t.count({a: {$exists: true}}));
assert.eq(1, t.count({a: {$exists: false}}));
// With index.
-t.ensureIndex({a: 1});
+t.createIndex({a: 1});
assert.eq(1, t.find({a: {$exists: true}}).hint({a: 1}).itcount());
assert.eq(1, t.find({a: {$exists: false}}).hint({a: 1}).itcount());
@@ -38,6 +38,6 @@ assert.eq(1, t.count({'a.0': {$exists: true}}));
assert.eq(1, t.count({'a.0': {$exists: false}}));
// With index.
-t.ensureIndex({'a.0': 1});
+t.createIndex({'a.0': 1});
assert.eq(1, t.find({'a.0': {$exists: true}}).hint({'a.0': 1}).itcount());
assert.eq(1, t.find({'a.0': {$exists: false}}).hint({'a.0': 1}).itcount());