summaryrefslogtreecommitdiff
path: root/jstests/replsets/two_initsync.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/replsets/two_initsync.js')
-rw-r--r--jstests/replsets/two_initsync.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/jstests/replsets/two_initsync.js b/jstests/replsets/two_initsync.js
index 1f2b526d61e..a9d47eb3ff1 100644
--- a/jstests/replsets/two_initsync.js
+++ b/jstests/replsets/two_initsync.js
@@ -56,10 +56,8 @@ doTest = function(signal) {
var a = replTest.getPrimary().getDB("two");
for (var i = 0; i < 20000; i++)
- a.coll.insert({
- i: i,
- s: "a b"
- });
+ a.coll.insert(
+ {i: i, s: "a b"});
// Start a second node
var second = replTest.add();