diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2019-09-08 01:27:18 +0900 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-09-07 12:27:18 -0400 |
commit | f12acdb50bd6afae21d8d033548c012d23ec2791 (patch) | |
tree | e61071f25a9dfe3ea853bcaea0ece7307a02bc73 /js/blob_test.ts | |
parent | a205e8a3c2bf5ba72fe18bd7f224303338956c62 (diff) |
Update @typescript-eslint/* to v2.1.0 (#2878)
Diffstat (limited to 'js/blob_test.ts')
-rw-r--r-- | js/blob_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/blob_test.ts b/js/blob_test.ts index 7fc7db1e2..afa1182a9 100644 --- a/js/blob_test.ts +++ b/js/blob_test.ts @@ -54,7 +54,7 @@ test(function nativeEndLine(): void { const options: object = { ending: "native" }; - let blob = new Blob(["Hello\nWorld"], options); + const blob = new Blob(["Hello\nWorld"], options); assertEquals(blob.size, Deno.build.os === "win" ? 12 : 11); }); |