summaryrefslogtreecommitdiff
path: root/jstests/core/exists4.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/exists4.js')
-rw-r--r--jstests/core/exists4.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/core/exists4.js b/jstests/core/exists4.js
index 2979a60f276..a533ca53e9c 100644
--- a/jstests/core/exists4.js
+++ b/jstests/core/exists4.js
@@ -3,7 +3,7 @@
t = db.jstests_exists4;
t.drop();
-t.ensureIndex({date: -1, country_code: 1, user_id: 1}, {unique: 1, background: 1});
+t.createIndex({date: -1, country_code: 1, user_id: 1}, {unique: 1, background: 1});
t.insert({date: new Date("08/27/2010"), tot_visit: 100});
t.insert({date: new Date("08/27/2010"), country_code: "IT", tot_visit: 77});
t.insert({date: new Date("08/27/2010"), country_code: "ES", tot_visit: 23});