diff options
Diffstat (limited to 'tests/cat.ts')
-rw-r--r-- | tests/cat.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cat.ts b/tests/cat.ts index bede0d432..66df14794 100644 --- a/tests/cat.ts +++ b/tests/cat.ts @@ -2,8 +2,8 @@ import { stdout, open, copy, args } from "deno"; async function main() { for (let i = 1; i < args.length; i++) { - let filename = args[i]; - let file = await open(filename); + const filename = args[i]; + const file = await open(filename); await copy(stdout, file); } } |