summaryrefslogtreecommitdiff
path: root/jstests/replsets/transaction_table_oplog_replay.js
diff options
context:
space:
mode:
authorRandolph Tan <randolph@10gen.com>2017-09-26 17:45:15 -0400
committerRandolph Tan <randolph@10gen.com>2017-10-04 16:43:58 -0400
commit0ab7000e04e16813c1e1e3f131f02de102ddffba (patch)
tree07c771aa1229bc85755f952dcc9a157a8d4e2dd2 /jstests/replsets/transaction_table_oplog_replay.js
parentd6267ee66b997af73fcfb095f03f655bb61c06dc (diff)
downloadmongo-0ab7000e04e16813c1e1e3f131f02de102ddffba.tar.gz
SERVER-31030 Use full OpTime instead of just Timestamps to refer to oplog entries
Diffstat (limited to 'jstests/replsets/transaction_table_oplog_replay.js')
-rw-r--r--jstests/replsets/transaction_table_oplog_replay.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/replsets/transaction_table_oplog_replay.js b/jstests/replsets/transaction_table_oplog_replay.js
index dbe039dc087..180c1f051c5 100644
--- a/jstests/replsets/transaction_table_oplog_replay.js
+++ b/jstests/replsets/transaction_table_oplog_replay.js
@@ -13,7 +13,7 @@
let res = table.findOne({"_id.id": lsid.id});
assert.eq(res.txnNum, txnNumber);
- assert.eq(res.lastWriteOpTimeTs, ts);
+ assert.eq(res.lastWriteOpTime.ts, ts);
}
/**