summaryrefslogtreecommitdiff
path: root/jstests/readonly
diff options
context:
space:
mode:
authorMike Grundy <michael.grundy@10gen.com>2016-02-25 14:37:12 -0500
committerMike Grundy <michael.grundy@10gen.com>2016-02-25 14:46:21 -0500
commiteada48bf3c3377878c334389f8e68bcddd25bd2a (patch)
tree7aab9079685537d74a09be66ff344bb3793cf84f /jstests/readonly
parenta5566c6c418daaa9e618c537653f41a867c42e12 (diff)
downloadmongo-eada48bf3c3377878c334389f8e68bcddd25bd2a.tar.gz
SERVER-22850 Clean up additional javascript issues found by eslint
Diffstat (limited to 'jstests/readonly')
-rw-r--r--jstests/readonly/lib/read_only_test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/readonly/lib/read_only_test.js b/jstests/readonly/lib/read_only_test.js
index 29c0e4fe57b..fe0d654d519 100644
--- a/jstests/readonly/lib/read_only_test.js
+++ b/jstests/readonly/lib/read_only_test.js
@@ -64,7 +64,7 @@ function* cycleN(arr, N) {
for (var i = 0; i < N; ++i) {
yield arr[i % arr.length];
}
-};
+}
function* zip2(iter1, iter2) {
var n1 = iter1.next();
@@ -82,4 +82,4 @@ function* zip2(iter1, iter2) {
yield res;
}
-};
+}