summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/initial_sync_cloner_dups.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/noPassthrough/initial_sync_cloner_dups.js')
-rw-r--r--jstests/noPassthrough/initial_sync_cloner_dups.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/jstests/noPassthrough/initial_sync_cloner_dups.js b/jstests/noPassthrough/initial_sync_cloner_dups.js
index dd0e05a8673..8967e94722c 100644
--- a/jstests/noPassthrough/initial_sync_cloner_dups.js
+++ b/jstests/noPassthrough/initial_sync_cloner_dups.js
@@ -100,10 +100,9 @@
// Removed the assertion because it was too flaky. Printing a warning instead (dan)
jsTestLog("making sure we dropped some dups");
var res = secondary.adminCommand({getLog: "global"});
- var droppedDups = (contains(res.log,
- function(v) {
- return v.indexOf("index build dropped" /* NNN dups*/) != -1;
- }));
+ var droppedDups = (contains(res.log, function(v) {
+ return v.indexOf("index build dropped" /* NNN dups*/) != -1;
+ }));
if (!droppedDups) {
jsTestLog(
"Warning: Test did not trigger duplicate documents, this run will be a false negative");