summaryrefslogtreecommitdiff
path: root/jstests/core/index_arr2.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/index_arr2.js')
-rw-r--r--jstests/core/index_arr2.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/jstests/core/index_arr2.js b/jstests/core/index_arr2.js
index 101655f2ce9..78c480719dc 100644
--- a/jstests/core/index_arr2.js
+++ b/jstests/core/index_arr2.js
@@ -12,7 +12,7 @@ function test( withIndex ){
a : [
{ b : { c : 1 } }
]
- }
+ };
now = (new Date()).getTime() / 1000;
for (created = now - NUM; created <= now; created++ ) {
@@ -24,14 +24,14 @@ function test( withIndex ){
// change the last M items.
query = {
'created' : { '$gte' : now - M }
- }
+ };
Z = t.find( query ).count();
if ( withIndex ){
//t.ensureIndex( { 'a.b.c' : 1, 'created' : -1 } )
//t.ensureIndex( { created : -1 } )
- t.ensureIndex( { 'a.b.c' : 1 } , { name : "x" } )
+ t.ensureIndex( { 'a.b.c' : 1 } , { name : "x" } );
}
var res = t.update(query, { '$set' : { "a.0.b.c" : 0 } } , false , true );
@@ -45,7 +45,7 @@ function test( withIndex ){
assert.eq( Z , count , "count after withIndex:" + withIndex );
}
-test( false )
+test( false );
test( true );