summaryrefslogtreecommitdiff
path: root/test/parallel/test-net-connect-options-path.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-net-connect-options-path.js')
-rw-r--r--test/parallel/test-net-connect-options-path.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/parallel/test-net-connect-options-path.js b/test/parallel/test-net-connect-options-path.js
index 07c5446fc6..3868b85a78 100644
--- a/test/parallel/test-net-connect-options-path.js
+++ b/test/parallel/test-net-connect-options-path.js
@@ -20,9 +20,8 @@ const CLIENT_VARIANTS = 12;
}, CLIENT_VARIANTS))
.listen(serverPath, common.mustCall(function() {
const getConnectCb = () => common.mustCall(function() {
- const client = this;
- client.end();
- client.on('close', common.mustCall(function() {
+ this.end();
+ this.on('close', common.mustCall(function() {
counter++;
if (counter === CLIENT_VARIANTS) {
server.close();