summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Gottlieb <daniel.gottlieb@mongodb.com>2018-08-10 09:17:17 -0400
committerDaniel Gottlieb <daniel.gottlieb@mongodb.com>2018-08-10 09:17:17 -0400
commitd054cd1149acb76830fff466ef3bb234741b5a46 (patch)
tree41b6570834da07f27b16af9b88ce979d7fefe430
parent3927b187d07cd5e9c9ebba26ecf9500b261f57fc (diff)
downloadmongo-d054cd1149acb76830fff466ef3bb234741b5a46.tar.gz
SERVER-36265: Correct number of expected files for nojournal in aggregation_backup_cursor test.
-rw-r--r--jstests/noPassthrough/aggregation_backup_cursor.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/noPassthrough/aggregation_backup_cursor.js b/jstests/noPassthrough/aggregation_backup_cursor.js
index 9d7b21959bb..d9228c07d3d 100644
--- a/jstests/noPassthrough/aggregation_backup_cursor.js
+++ b/jstests/noPassthrough/aggregation_backup_cursor.js
@@ -27,7 +27,7 @@
assert.commandWorked(db.runCommand({getMore: cursorId, collection: "$cmd.aggregate"}));
// Sanity check the results.
assert.neq(0, response.cursor.id);
- assert.gt(response.cursor.nextBatch.length, 6);
+ assert.gt(response.cursor.nextBatch.length, 4);
// The $backupCursor is a tailable cursor. Even though we've exhausted the results, running a
// getMore should succeed.