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'])); });