Skip to content

Commit b155d89

Browse files
committed
fix(build): use var instead of let
1 parent ea06d34 commit b155d89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/searching/longest-subsequence.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ describe('longest subsequence', function () {
1717
});
1818

1919
it('should return the only element in a single element array', function () {
20-
let array = [1];
20+
var array = [1];
2121
expect(longestSubsequence(array)).toEqual([1]);
2222
});
2323

0 commit comments

Comments
 (0)