Skip to content

Commit

Permalink
test: remove unused parameter
Browse files Browse the repository at this point in the history
PR-URL: #17188
Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
xballoy authored and MylesBorins committed Dec 11, 2017
1 parent 7b5a05b commit 36281f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/sequential/test-async-wrap-getasyncid.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ if (common.hasCrypto) { // eslint-disable-line crypto-check
const tcp_wrap = process.binding('tcp_wrap');
const server = net.createServer(common.mustCall((socket) => {
server.close();
socket.on('data', (x) => {
socket.on('data', () => {
socket.end();
socket.destroy();
});
Expand Down

0 comments on commit 36281f4

Please sign in to comment.