summaryrefslogtreecommitdiff
path: root/jstests/replsets/oplog_visibility.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/replsets/oplog_visibility.js')
-rw-r--r--jstests/replsets/oplog_visibility.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/jstests/replsets/oplog_visibility.js b/jstests/replsets/oplog_visibility.js
index 1ed7301637d..ee62e2475e8 100644
--- a/jstests/replsets/oplog_visibility.js
+++ b/jstests/replsets/oplog_visibility.js
@@ -88,10 +88,11 @@ for (let node of replTest.nodes) {
oplogStart = timestamps[0];
let cursor =
local.getCollection("oplog.rs").find({ts: {$gte: oplogStart}}).sort({$natural: 1});
- for (let observedTsIdx in timestamps) {
+ for (let observedTsIdx = 0; observedTsIdx < timestamps.length; ++observedTsIdx) {
let observedTs = timestamps[observedTsIdx];
assert(cursor.hasNext());
- let actualTs = cursor.next()["ts"];
+ let doc = cursor.next();
+ let actualTs = doc["ts"];
assert.eq(actualTs, observedTs, function() {
let prev = null;
let next = null;