summaryrefslogtreecommitdiff
path: root/jstests/core/fts2.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/fts2.js')
-rw-r--r--jstests/core/fts2.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/core/fts2.js b/jstests/core/fts2.js
index 77b6fe25bd5..7629d313b00 100644
--- a/jstests/core/fts2.js
+++ b/jstests/core/fts2.js
@@ -12,7 +12,7 @@ t.drop();
t.save({_id: 1, x: "az b x", y: "c d m", z: 1});
t.save({_id: 2, x: "c d y", y: "az b n", z: 2});
-t.ensureIndex({x: "text"}, {weights: {x: 10, y: 1}});
+t.createIndex({x: "text"}, {weights: {x: 10, y: 1}});
assert.eq([1, 2], queryIDS(t, "az"), "A1");
assert.eq([2, 1], queryIDS(t, "d"), "A2");