summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/wt_nojournal_repl.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/noPassthrough/wt_nojournal_repl.js')
-rw-r--r--jstests/noPassthrough/wt_nojournal_repl.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/jstests/noPassthrough/wt_nojournal_repl.js b/jstests/noPassthrough/wt_nojournal_repl.js
index b9c58a516db..8e25d5923f8 100644
--- a/jstests/noPassthrough/wt_nojournal_repl.js
+++ b/jstests/noPassthrough/wt_nojournal_repl.js
@@ -73,10 +73,9 @@ if (jsTest.options().storageEngine && jsTest.options().storageEngine !== "wiredT
// Test that the restarted secondary did NOT do an initial sync by checking the log
var res = secondary1.adminCommand({getLog: "global"});
- assert(!contains(res.log,
- function(v) {
- return v.indexOf("initial sync") != -1;
- }));
+ assert(!contains(res.log, function(v) {
+ return v.indexOf("initial sync") != -1;
+ }));
jsTestLog("check data is in both collections");
assert.eq(secondary1.getDB("test").foo.count(), 100);