From 75c0f673b1fec3d3788bb40609f523879e14d1d4 Mon Sep 17 00:00:00 2001 From: Nick K Date: Sat, 31 Jul 2021 16:20:02 +0300 Subject: [PATCH] Fix for ESLint errors. --- test/headers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/headers.ts b/test/headers.ts index 6e82bfedb..860ed0e1c 100644 --- a/test/headers.ts +++ b/test/headers.ts @@ -199,7 +199,7 @@ test('form-data sets `content-length` header for spec-compatible FormData', with const headers = JSON.parse(body); const encoder = new FormDataEncoder(form); - // form-data-encoder produces a boundary with the same length so we can just rely on it when comparing `content-length` header + // The form-data-encoder produces a boundary with the same length so we can just rely on it when comparing `content-length` header t.is((headers['content-length'] as string), String(encoder.headers['Content-Length'])); });