summaryrefslogtreecommitdiff
path: root/jstests/replsets/rollback_collMod_PowerOf2Sizes.js
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2016-05-28 17:55:12 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2016-05-28 17:55:12 -0400
commit6dcdd23dd37ef12c87e71cf59ef01cd82432efe0 (patch)
treec8cfb5acb62c80f375bc37e7d4350382deea6a37 /jstests/replsets/rollback_collMod_PowerOf2Sizes.js
parentd4ac5673ea3f6cef4ce9dbcec90e31813997a528 (diff)
downloadmongo-6dcdd23dd37ef12c87e71cf59ef01cd82432efe0.tar.gz
SERVER-23971 Clang-Format code
Diffstat (limited to 'jstests/replsets/rollback_collMod_PowerOf2Sizes.js')
-rw-r--r--jstests/replsets/rollback_collMod_PowerOf2Sizes.js15
1 files changed, 4 insertions, 11 deletions
diff --git a/jstests/replsets/rollback_collMod_PowerOf2Sizes.js b/jstests/replsets/rollback_collMod_PowerOf2Sizes.js
index deab19b2f09..24177ebe6b7 100644
--- a/jstests/replsets/rollback_collMod_PowerOf2Sizes.js
+++ b/jstests/replsets/rollback_collMod_PowerOf2Sizes.js
@@ -43,10 +43,7 @@
};
assert.commandWorked(a_conn.getDB(name).createCollection('foo', originalCollectionOptions));
- var options = {
- writeConcern: {w: 2, wtimeout: 60000},
- upsert: true
- };
+ var options = {writeConcern: {w: 2, wtimeout: 60000}, upsert: true};
assert.writeOK(a_conn.getDB(name).foo.insert({x: 1}, options));
assert.eq(getOptions(a_conn), originalCollectionOptions);
@@ -64,9 +61,8 @@
validationLevel: "moderate",
validationAction: "warn"
}));
- assert.eq(
- getOptions(a_conn),
- {flags: 2, validator: {a: 1}, validationLevel: "moderate", validationAction: "warn"});
+ assert.eq(getOptions(a_conn),
+ {flags: 2, validator: {a: 1}, validationLevel: "moderate", validationAction: "warn"});
// Shut down A and fail over to B.
replTest.stop(AID);
@@ -76,10 +72,7 @@
b_conn = master;
// Do a write on B so that A will have to roll back.
- options = {
- writeConcern: {w: 1, wtimeout: 60000},
- upsert: true
- };
+ options = {writeConcern: {w: 1, wtimeout: 60000}, upsert: true};
assert.writeOK(b_conn.getDB(name).foo.insert({x: 2}, options));
// Restart A, which should rollback the collMod before becoming primary.