diff options
Diffstat (limited to 'textproto/test.ts')
-rw-r--r-- | textproto/test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textproto/test.ts b/textproto/test.ts index 0f8bee227..b6a4c93c9 100644 --- a/textproto/test.ts +++ b/textproto/test.ts @@ -92,7 +92,7 @@ test(async function textprotoAppend() { test(async function textprotoReadEmpty() { let r = reader(""); - let [m, err] = await r.readMIMEHeader(); + let [, err] = await r.readMIMEHeader(); // Should not crash! assertEqual(err, "EOF"); }); |