summaryrefslogtreecommitdiff
path: root/jstests/core/updatei.js
diff options
context:
space:
mode:
authorJonathan Abrahams <jonathan@mongodb.com>2016-03-09 12:17:50 -0500
committerJonathan Abrahams <jonathan@mongodb.com>2016-03-09 12:18:14 -0500
commit4ae691e8edc87d0e3cfb633bb91c328426be007b (patch)
tree52079a593f54382ca13a2e741633eab1b6271893 /jstests/core/updatei.js
parenta025d43f3ce2efc1fb1282a718f5d286fa0a4dc1 (diff)
downloadmongo-4ae691e8edc87d0e3cfb633bb91c328426be007b.tar.gz
SERVER-22468 Format JS code with approved style in jstests/
Diffstat (limited to 'jstests/core/updatei.js')
-rw-r--r--jstests/core/updatei.js60
1 files changed, 30 insertions, 30 deletions
diff --git a/jstests/core/updatei.js b/jstests/core/updatei.js
index e45b3fde5bb..d5bc3500ab0 100644
--- a/jstests/core/updatei.js
+++ b/jstests/core/updatei.js
@@ -6,81 +6,81 @@ t = db.updatei;
t.drop();
-for (i=0; i<10; i++) {
- t.save({ _id : i, k: "x", a: [] });
+for (i = 0; i < 10; i++) {
+ t.save({_id: i, k: "x", a: []});
}
-t.update({ k: "x" }, { $push: { a: "y" }}, { multi: true });
-t.find({ k : "x" }).forEach(function(z) {
- assert.eq([ "y" ], z.a, "multi update using object arg");
+t.update({k: "x"}, {$push: {a: "y"}}, {multi: true});
+t.find({k: "x"}).forEach(function(z) {
+ assert.eq(["y"], z.a, "multi update using object arg");
});
t.drop();
// Using a single update
-for (i=0; i<10; i++) {
- t.save({ _id : i, k: "x", a: [] });
+for (i = 0; i < 10; i++) {
+ t.save({_id: i, k: "x", a: []});
}
-t.update({ k: "x" }, { $push: { a: "y" }}, { multi: false });
-assert.eq(1, t.find({ "a": "y" }).count(), "update using object arg");
+t.update({k: "x"}, {$push: {a: "y"}}, {multi: false});
+assert.eq(1, t.find({"a": "y"}).count(), "update using object arg");
t.drop();
// Using upsert, found
-for (i=0; i<10; i++) {
- t.save({ _id : i, k: "x", a: [] });
+for (i = 0; i < 10; i++) {
+ t.save({_id: i, k: "x", a: []});
}
-t.update({ k: "x" }, { $push: { a: "y" }}, { upsert: true });
-assert.eq(1, t.find({ "k": "x", "a": "y" }).count(), "upsert (found) using object arg");
+t.update({k: "x"}, {$push: {a: "y"}}, {upsert: true});
+assert.eq(1, t.find({"k": "x", "a": "y"}).count(), "upsert (found) using object arg");
t.drop();
// Using upsert + multi, found
-for (i=0; i<10; i++) {
- t.save({ _id : i, k: "x", a: [] });
+for (i = 0; i < 10; i++) {
+ t.save({_id: i, k: "x", a: []});
}
-t.update({ k: "x" }, { $push: { a: "y" }}, { upsert: true, multi: true });
-t.find({ k : "x" }).forEach(function(z) {
- assert.eq([ "y" ], z.a, "multi + upsert (found) using object arg");
+t.update({k: "x"}, {$push: {a: "y"}}, {upsert: true, multi: true});
+t.find({k: "x"}).forEach(function(z) {
+ assert.eq(["y"], z.a, "multi + upsert (found) using object arg");
});
t.drop();
// Using upsert, not found
-for (i=0; i<10; i++) {
- t.save({ _id : i, k: "x", a: [] });
+for (i = 0; i < 10; i++) {
+ t.save({_id: i, k: "x", a: []});
}
-t.update({ k: "y" }, { $push: { a: "y" }}, { upsert: true });
-assert.eq(1, t.find({ "k": "y", "a": "y" }).count(), "upsert (not found) using object arg");
+t.update({k: "y"}, {$push: {a: "y"}}, {upsert: true});
+assert.eq(1, t.find({"k": "y", "a": "y"}).count(), "upsert (not found) using object arg");
t.drop();
// Without upsert, found
-for (i=0; i<10; i++) {
- t.save({ _id : i, k: "x", a: [] });
+for (i = 0; i < 10; i++) {
+ t.save({_id: i, k: "x", a: []});
}
-t.update({ k: "x" }, { $push: { a: "y" }}, { upsert: false });
-assert.eq(1, t.find({ "a": "y" }).count(), "no upsert (found) using object arg");
+t.update({k: "x"}, {$push: {a: "y"}}, {upsert: false});
+assert.eq(1, t.find({"a": "y"}).count(), "no upsert (found) using object arg");
t.drop();
// Without upsert, not found
-for (i=0; i<10; i++) {
- t.save({ _id : i, k: "x", a: [] });
+for (i = 0; i < 10; i++) {
+ t.save({_id: i, k: "x", a: []});
}
-t.update({ k: "y" }, { $push: { a: "y" }}, { upsert: false });
-assert.eq(0, t.find({ "a": "y" }).count(), "no upsert (not found) using object arg");
+t.update({k: "y"}, {$push: {a: "y"}}, {upsert: false});
+assert.eq(0, t.find({"a": "y"}).count(), "no upsert (not found) using object arg");
t.drop();