summaryrefslogtreecommitdiff
path: root/jstests/core/set7.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/set7.js
parenta025d43f3ce2efc1fb1282a718f5d286fa0a4dc1 (diff)
downloadmongo-4ae691e8edc87d0e3cfb633bb91c328426be007b.tar.gz
SERVER-22468 Format JS code with approved style in jstests/
Diffstat (limited to 'jstests/core/set7.js')
-rw-r--r--jstests/core/set7.js72
1 files changed, 36 insertions, 36 deletions
diff --git a/jstests/core/set7.js b/jstests/core/set7.js
index bf9870eb015..8aba33aee94 100644
--- a/jstests/core/set7.js
+++ b/jstests/core/set7.js
@@ -5,64 +5,64 @@ var res;
t.drop();
-t.save( {a:[0,1,2,3]} );
-t.update( {}, {$set:{"a.0":2}} );
-assert.eq( [2,1,2,3], t.findOne().a );
+t.save({a: [0, 1, 2, 3]});
+t.update({}, {$set: {"a.0": 2}});
+assert.eq([2, 1, 2, 3], t.findOne().a);
-t.update( {}, {$set:{"a.4":5}} );
-assert.eq( [2,1,2,3,5], t.findOne().a );
+t.update({}, {$set: {"a.4": 5}});
+assert.eq([2, 1, 2, 3, 5], t.findOne().a);
-t.update( {}, {$set:{"a.9":9}} );
-assert.eq( [2,1,2,3,5,null,null,null,null,9], t.findOne().a );
+t.update({}, {$set: {"a.9": 9}});
+assert.eq([2, 1, 2, 3, 5, null, null, null, null, 9], t.findOne().a);
t.drop();
-t.save( {a:[0,1,2,3]} );
-t.update( {}, {$set:{"a.9":9,"a.7":7}} );
-assert.eq( [0,1,2,3,null,null,null,7,null,9], t.findOne().a );
+t.save({a: [0, 1, 2, 3]});
+t.update({}, {$set: {"a.9": 9, "a.7": 7}});
+assert.eq([0, 1, 2, 3, null, null, null, 7, null, 9], t.findOne().a);
t.drop();
-t.save( {a:[0,1,2,3,4,5,6,7,8,9,10]} );
-t.update( {}, {$set:{"a.11":11} } );
-assert.eq( [0,1,2,3,4,5,6,7,8,9,10,11], t.findOne().a );
+t.save({a: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]});
+t.update({}, {$set: {"a.11": 11}});
+assert.eq([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], t.findOne().a);
t.drop();
-t.save( {} );
-t.update( {}, {$set:{"a.0":4}} );
-assert.eq( {"0":4}, t.findOne().a );
+t.save({});
+t.update({}, {$set: {"a.0": 4}});
+assert.eq({"0": 4}, t.findOne().a);
t.drop();
-t.update( {"a.0":4}, {$set:{b:1}}, true );
-assert.eq( {"0":4}, t.findOne().a );
+t.update({"a.0": 4}, {$set: {b: 1}}, true);
+assert.eq({"0": 4}, t.findOne().a);
t.drop();
-t.save( {a:[]} );
-res = t.update( {}, {$set:{"a.f":1}} );
-assert.writeError( res );
-assert.eq( [], t.findOne().a );
+t.save({a: []});
+res = t.update({}, {$set: {"a.f": 1}});
+assert.writeError(res);
+assert.eq([], t.findOne().a);
// Test requiring proper ordering of multiple mods.
t.drop();
-t.save( {a:[0,1,2,3,4,5,6,7,8,9,10]} );
-t.update( {}, {$set:{"a.11":11,"a.2":-2}} );
-assert.eq( [0,1,-2,3,4,5,6,7,8,9,10,11], t.findOne().a );
+t.save({a: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]});
+t.update({}, {$set: {"a.11": 11, "a.2": -2}});
+assert.eq([0, 1, -2, 3, 4, 5, 6, 7, 8, 9, 10, 11], t.findOne().a);
// Test upsert case
t.drop();
-t.update( {a:[0,1,2,3,4,5,6,7,8,9,10]}, {$set:{"a.11":11} }, true );
-assert.eq( [0,1,2,3,4,5,6,7,8,9,10,11], t.findOne().a );
+t.update({a: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]}, {$set: {"a.11": 11}}, true);
+assert.eq([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], t.findOne().a);
// SERVER-3750
t.drop();
-t.save( {a:[]} );
-res = t.update( {}, {$set:{"a.1500000":1}} ); // current limit
-assert.writeOK( res );
+t.save({a: []});
+res = t.update({}, {$set: {"a.1500000": 1}}); // current limit
+assert.writeOK(res);
t.drop();
-t.save( {a:[]} );
-res = t.update( {}, {$set:{"a.1500001":1}} ); // 1 over limit
-assert.writeError( res );
+t.save({a: []});
+res = t.update({}, {$set: {"a.1500001": 1}}); // 1 over limit
+assert.writeError(res);
t.drop();
-t.save( {a:[]} );
-res = t.update( {}, {$set:{"a.1000000000":1}} ); // way over limit
-assert.writeError( res );
+t.save({a: []});
+res = t.update({}, {$set: {"a.1000000000": 1}}); // way over limit
+assert.writeError(res);