0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

put test back

This commit is contained in:
Eliot Horowitz 2010-02-12 14:44:21 -05:00
parent a023fc861b
commit 4685677e23

View File

@ -1,6 +1,5 @@
t = db.update_addToSet1;
/*
t.drop();
o = { _id : 1 , a : [ 2 , 1 ] }
@ -14,7 +13,6 @@ assert.eq( o , t.findOne() , "A2" );
t.update( {} , { $addToSet : { a : 3 } } );
assert.eq( o , t.findOne() , "A3" );
*/
// SERVER-628
// t.update( {} , { $addToSet : { a : { $each : [ 3 , 5 , 6 ] } } } );