summaryrefslogtreecommitdiff
path: root/test/async-hooks/test-graph.http.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/async-hooks/test-graph.http.js')
-rw-r--r--test/async-hooks/test-graph.http.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/async-hooks/test-graph.http.js b/test/async-hooks/test-graph.http.js
index 12862467a6..db0c126567 100644
--- a/test/async-hooks/test-graph.http.js
+++ b/test/async-hooks/test-graph.http.js
@@ -11,11 +11,11 @@ const http = require('http');
const hooks = initHooks();
hooks.enable();
-const server = http.createServer(common.mustCall(function(req, res) {
+const server = http.createServer(common.mustCall((req, res) => {
res.end();
- this.close(common.mustCall());
+ server.close(common.mustCall());
}));
-server.listen(0, common.mustCall(function() {
+server.listen(0, common.mustCall(() => {
http.get({
host: '::1',
family: 6,
@@ -23,7 +23,7 @@ server.listen(0, common.mustCall(function() {
}, common.mustCall());
}));
-process.on('exit', function() {
+process.on('exit', () => {
hooks.disable();
verifyGraph(