summaryrefslogtreecommitdiff
path: root/io/util_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'io/util_test.ts')
-rw-r--r--io/util_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/io/util_test.ts b/io/util_test.ts
index 3302fe9e3..c616a4bba 100644
--- a/io/util_test.ts
+++ b/io/util_test.ts
@@ -6,7 +6,7 @@ import { copyBytes, tempFile } from "./util.ts";
import * as path from "../fs/path.ts";
test(function testCopyBytes(): void {
- let dst = new Uint8Array(4);
+ const dst = new Uint8Array(4);
dst.fill(0);
let src = Uint8Array.of(1, 2);