diff options
Diffstat (limited to 'js/text_encoding_test.ts')
-rw-r--r-- | js/text_encoding_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/text_encoding_test.ts b/js/text_encoding_test.ts index 7633e105a..727424749 100644 --- a/js/text_encoding_test.ts +++ b/js/text_encoding_test.ts @@ -24,8 +24,8 @@ test(function atobWithAsciiWhitespace(): void { d29ybGQ=` ]; - for (let encoded of encodedList) { - let decoded = atob(encoded); + for (const encoded of encodedList) { + const decoded = atob(encoded); assertEquals(decoded, "hello world"); } }); |