summaryrefslogtreecommitdiff
path: root/jstests/replsets/commands_that_write_accept_wc.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/replsets/commands_that_write_accept_wc.js')
-rw-r--r--jstests/replsets/commands_that_write_accept_wc.js13
1 files changed, 3 insertions, 10 deletions
diff --git a/jstests/replsets/commands_that_write_accept_wc.js b/jstests/replsets/commands_that_write_accept_wc.js
index 9f35d5c6549..83a341767c2 100644
--- a/jstests/replsets/commands_that_write_accept_wc.js
+++ b/jstests/replsets/commands_that_write_accept_wc.js
@@ -99,9 +99,7 @@ load('jstests/libs/write_concern_util.js');
});
},
reduce: function(key, values) {
- return {
- count: values.length
- };
+ return {count: values.length};
},
out: "foo"
},
@@ -120,10 +118,7 @@ load('jstests/libs/write_concern_util.js');
});
function testValidWriteConcern(cmd) {
- cmd.req.writeConcern = {
- w: 'majority',
- wtimeout: 25000
- };
+ cmd.req.writeConcern = {w: 'majority', wtimeout: 25000};
jsTest.log("Testing " + tojson(cmd.req));
dropTestCollection();
@@ -136,9 +131,7 @@ load('jstests/libs/write_concern_util.js');
}
function testInvalidWriteConcern(cmd) {
- cmd.req.writeConcern = {
- w: 'invalid'
- };
+ cmd.req.writeConcern = {w: 'invalid'};
jsTest.log("Testing " + tojson(cmd.req));
dropTestCollection();