summaryrefslogtreecommitdiff
path: root/jstests/sharding/coll_epoch_test0.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/sharding/coll_epoch_test0.js')
-rw-r--r--jstests/sharding/coll_epoch_test0.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/jstests/sharding/coll_epoch_test0.js b/jstests/sharding/coll_epoch_test0.js
index a8745cd3110..ba87929cb4e 100644
--- a/jstests/sharding/coll_epoch_test0.js
+++ b/jstests/sharding/coll_epoch_test0.js
@@ -22,7 +22,6 @@ config.shards.find().forEach(function(doc) {
var createdEpoch = null;
var checkEpochs = function() {
config.chunks.find({ns: coll + ""}).forEach(function(chunk) {
-
// Make sure the epochs exist, are non-zero, and are consistent
assert(chunk.lastmodEpoch);
print(chunk.lastmodEpoch + "");
@@ -31,7 +30,6 @@ var checkEpochs = function() {
createdEpoch = chunk.lastmodEpoch;
else
assert.eq(createdEpoch, chunk.lastmodEpoch);
-
});
};