summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-01-14 21:53:55 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-01-14 21:53:55 -0800
commit39537f3f2a5969f607f5efc8b77668248adf38f3 (patch)
tree19686c62e277f368b41e1b1ad6fd766caec46868 /js
parent151903307c6d0545d0e747174519eda70b846ce1 (diff)
Fixed minor linter issues.
Diffstat (limited to 'js')
-rwxr-xr-xjs/test.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/js/test.js b/js/test.js
index b231b21..3f1b6ff 100755
--- a/js/test.js
+++ b/js/test.js
@@ -21,7 +21,8 @@ var repeat = function(pattern, count) {
if (count & 1) {
result += pattern;
}
- count >>= 1, pattern += pattern;
+ count >>= 1;
+ pattern += pattern;
}
return result + pattern;
};
@@ -156,7 +157,7 @@ fs.readFile('spec.txt', 'utf8', function(err, data) {
repeat('</blockquote>\n', 10000) }
];
- for (var i = 0; i < cases.length; i++) {
+ for (i = 0; i < cases.length; i++) {
pathologicalTest(cases[i], results);
}
cursor.write('\n');