Skip to content

Commit

Permalink
Update test/fetch/request.js
Browse files Browse the repository at this point in the history
  • Loading branch information
tsctx authored Apr 24, 2024
1 parent 87abe38 commit a7c021f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion test/fetch/request.js
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,6 @@ test('set-cookie headers get cleared when passing a Request as first param', ()
assert.deepStrictEqual([...req1.headers], [['set-cookie', 'a=1']])
const req2 = new Request(req1, { headers: {} })
assert.deepStrictEqual([...req1.headers], [['set-cookie', 'a=1']])

assert.deepStrictEqual([...req2.headers], [])
assert.deepStrictEqual(req2.headers.getSetCookie(), [])
})
Expand Down

0 comments on commit a7c021f

Please sign in to comment.