summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-client-aborted-event.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-http-client-aborted-event.js')
-rw-r--r--test/parallel/test-http-client-aborted-event.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-http-client-aborted-event.js b/test/parallel/test-http-client-aborted-event.js
index 951a128f51..a9036a927d 100644
--- a/test/parallel/test-http-client-aborted-event.js
+++ b/test/parallel/test-http-client-aborted-event.js
@@ -13,6 +13,6 @@ server.listen(0, common.mustCall(function() {
headers: { connection: 'keep-alive' }
}, common.mustCall(function(res) {
server.close();
- res.on('aborted', common.mustCall(function() {}));
+ res.on('aborted', common.mustCall());
}));
}));