summaryrefslogtreecommitdiff
path: root/jstests/core/geo_oob_sphere.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/geo_oob_sphere.js')
-rw-r--r--jstests/core/geo_oob_sphere.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/core/geo_oob_sphere.js b/jstests/core/geo_oob_sphere.js
index 3a878f06b78..08a10758c77 100644
--- a/jstests/core/geo_oob_sphere.js
+++ b/jstests/core/geo_oob_sphere.js
@@ -15,7 +15,7 @@ assert.commandWorked(coll.insert({loc: {x: 30, y: 89}}));
assert.commandWorked(coll.insert({loc: {x: 30, y: 89}}));
assert.commandWorked(coll.insert({loc: {x: 30, y: 91}}));
-assert.commandWorked(coll.ensureIndex({loc: "2d"}));
+assert.commandWorked(coll.createIndex({loc: "2d"}));
assert.throws(function() {
coll.find({loc: {$nearSphere: [30, 91], $maxDistance: 0.25}}).count();