summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/read_majority.js
diff options
context:
space:
mode:
authorMike Grundy <michael.grundy@10gen.com>2016-02-04 12:29:53 -0500
committerMike Grundy <michael.grundy@10gen.com>2016-02-05 15:00:51 -0500
commitb4b016d9732a189fceddbcad5be378a7848d95b1 (patch)
treefeeff66064abfc886e2cc01f83262fe5be43b31e /jstests/noPassthrough/read_majority.js
parent2689df80fa1a476b26d02937456d34191feb1087 (diff)
downloadmongo-b4b016d9732a189fceddbcad5be378a7848d95b1.tar.gz
SERVER-22341 fix jslint errors in jstests/noPassthrough with eslint --fix
Diffstat (limited to 'jstests/noPassthrough/read_majority.js')
-rw-r--r--jstests/noPassthrough/read_majority.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/noPassthrough/read_majority.js b/jstests/noPassthrough/read_majority.js
index 9c35711f7c6..b1f1a5801f8 100644
--- a/jstests/noPassthrough/read_majority.js
+++ b/jstests/noPassthrough/read_majority.js
@@ -107,7 +107,7 @@ assert.eq(getReadMajorityAggCursor().itcount(), 10);
getReadMajorityAggCursor().forEach(function(doc) {
// Note: agg uses internal batching so can't reliably test flipping snapshot. However, it uses
// the same mechanism as find, so if one works, both should.
- assert.eq(doc.version, 3)
+ assert.eq(doc.version, 3);
});
assert.eq(getReadMajorityCursor().itcount(), 10);