summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Grundy <michael.grundy@10gen.com>2016-02-04 12:30:20 -0500
committerMike Grundy <michael.grundy@10gen.com>2016-02-05 15:00:51 -0500
commita4d52e4c8505d15b58a465720edca4a2906fd23f (patch)
tree9cea14a116b0929a55aa16a1f57ed2b223bf6384
parent899b96b6983e3b16631cf449f63a993cd2d9a8fe (diff)
downloadmongo-a4d52e4c8505d15b58a465720edca4a2906fd23f.tar.gz
SERVER-22341 fix jslint errors in jstests/readonly with eslint --fix
-rw-r--r--jstests/readonly/get_more.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/readonly/get_more.js b/jstests/readonly/get_more.js
index d41ccaeaec2..56719a034ae 100644
--- a/jstests/readonly/get_more.js
+++ b/jstests/readonly/get_more.js
@@ -17,7 +17,7 @@ runReadOnlyTest(function() {
bulk.insert({x: idx, y: idx + 1});
}
assert.writeOK(bulk.execute());
- };
+ }
assert.eq(writableCollection.count(), this.count);
},
exec: function(readableCollection) {
@@ -26,7 +26,7 @@ runReadOnlyTest(function() {
while (cursor.hasNext()) {
++count;
var doc = cursor.next();
- assert.eq(doc.y, doc.x + 1);;
+ assert.eq(doc.y, doc.x + 1);
}
assert.eq(count, this.count);
}