summaryrefslogtreecommitdiff
path: root/test/async-hooks/test-nexttick-default-trigger.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/async-hooks/test-nexttick-default-trigger.js')
-rw-r--r--test/async-hooks/test-nexttick-default-trigger.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/async-hooks/test-nexttick-default-trigger.js b/test/async-hooks/test-nexttick-default-trigger.js
index 1bc93f2973..7d6d98c9ab 100644
--- a/test/async-hooks/test-nexttick-default-trigger.js
+++ b/test/async-hooks/test-nexttick-default-trigger.js
@@ -14,11 +14,11 @@ hooks.enable();
const rootAsyncId = async_hooks.executionAsyncId();
-process.nextTick(common.mustCall(function() {
+process.nextTick(common.mustCall(() => {
assert.strictEqual(async_hooks.triggerAsyncId(), rootAsyncId);
}));
-process.on('exit', function() {
+process.on('exit', () => {
hooks.sanityCheck();
const as = hooks.activitiesOfTypes('TickObject');