Skip to content

Commit

Permalink
Fix https-proxy-agent test on Node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
TooTallNate committed Apr 29, 2023
1 parent e17e625 commit 1c5fb60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/https-proxy-agent/test/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ describe('HttpsProxyAgent', () => {
rejectUnauthorized: false,
});
const body = await json(res);
assert.equal('localhost', body.host);
assert.equal(sslServerUrl.hostname, body.host);
}
);
});
Expand Down

0 comments on commit 1c5fb60

Please sign in to comment.