Skip to content

Commit

Permalink
test: fix dangerous .map in test/parallel/test-http-set-trailers.js
Browse files Browse the repository at this point in the history
  • Loading branch information
LiviaMedeiros committed May 13, 2022
1 parent 78c8d2a commit 02c7ee7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-http-set-trailers.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const server = http.createServer((req, res) => {
});
server.listen(0, () => {
Promise.all([testHttp10, testHttp11, testClientTrailers]
.map(util.promisify)
.map((f) => util.promisify(f))
.map((f) => f(server.address().port)))
.then(() => server.close());
});

0 comments on commit 02c7ee7

Please sign in to comment.