summaryrefslogtreecommitdiff
path: root/jstests/core/update_arraymatch5.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/update_arraymatch5.js')
-rw-r--r--jstests/core/update_arraymatch5.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/core/update_arraymatch5.js b/jstests/core/update_arraymatch5.js
index eeca2598d1c..4bddcb1ea26 100644
--- a/jstests/core/update_arraymatch5.js
+++ b/jstests/core/update_arraymatch5.js
@@ -7,7 +7,7 @@ t = db.update_arraymatch5;
t.drop();
t.insert({abc: {visible: true}, testarray: [{foobar_id: 316, visible: true, xxx: 1}]});
-t.ensureIndex({'abc.visible': 1, 'testarray.visible': 1, 'testarray.xxx': 1});
+t.createIndex({'abc.visible': 1, 'testarray.visible': 1, 'testarray.xxx': 1});
assert(t.findOne({'abc.visible': true, testarray: {'$elemMatch': {visible: true, xxx: 1}}}), "A1");
assert(t.findOne({testarray: {'$elemMatch': {visible: true, xxx: 1}}}), "A2");