From 50a79584cb12129b3db1ef3e0eb9d0c8b9f20b62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Thu, 30 May 2019 14:59:30 +0200 Subject: chore: Implement strict mode (denoland/deno_std#453) Original: https://github.com/denoland/deno_std/commit/be24677d15494e83eea2e99bfc5ccfdde31cb892 --- textproto/reader_test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'textproto/reader_test.ts') diff --git a/textproto/reader_test.ts b/textproto/reader_test.ts index bd0d39fd3..dfe918282 100644 --- a/textproto/reader_test.ts +++ b/textproto/reader_test.ts @@ -83,7 +83,7 @@ test({ test({ name: "[textproto] Reader : Large MIME Header", async fn(): Promise { - const data = []; + const data: string[] = []; // Go test is 16*1024. But seems it can't handle more for (let i = 0; i < 1024; i++) { data.push("x"); -- cgit v1.2.3