summaryrefslogtreecommitdiff
path: root/jstests/core/sort5.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/sort5.js')
-rw-r--r--jstests/core/sort5.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/core/sort5.js b/jstests/core/sort5.js
index be40802ade4..2f604225d7a 100644
--- a/jstests/core/sort5.js
+++ b/jstests/core/sort5.js
@@ -16,7 +16,7 @@ assert.eq([4, 2, 3, 1],
return z.x;
}),
"A no index");
-t.createIndex({"y.b": 1, "y.a": -1});
+t.ensureIndex({"y.b": 1, "y.a": -1});
assert.eq([4, 2, 3, 1],
t.find().sort({"y.b": 1, "y.a": -1}).map(function(z) {
return z.x;
@@ -31,7 +31,7 @@ assert.eq([4, 2, 3, 1],
return z.x;
}),
"B no index");
-t.createIndex({"y.b": 1, "_id": -1});
+t.ensureIndex({"y.b": 1, "_id": -1});
assert.eq([4, 2, 3, 1],
t.find().sort({"y.b": 1, _id: -1}).map(function(z) {
return z.x;