From 8258f0704da5c4782e758489cf08148f82033667 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Arboleda?= Date: Wed, 20 Mar 2019 00:59:40 -0500 Subject: [PATCH] test: remove unused triggerAsyncId param in test PR-URL: https://github.com/nodejs/node/pull/26800 Reviewed-By: Anto Aravinth Reviewed-By: Ruben Bridgewater Reviewed-By: James M Snell Reviewed-By: Yongsheng Zhang Signed-off-by: Beth Griggs --- test/parallel/test-async-hooks-close-during-destroy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parallel/test-async-hooks-close-during-destroy.js b/test/parallel/test-async-hooks-close-during-destroy.js index abdeab2404251a..6e485d2d1110f2 100644 --- a/test/parallel/test-async-hooks-close-during-destroy.js +++ b/test/parallel/test-async-hooks-close-during-destroy.js @@ -11,7 +11,7 @@ let destroyResCallCount = 0; let res2; async_hooks.createHook({ - init: common.mustCallAtLeast((id, provider, triggerAsyncId) => { + init: common.mustCallAtLeast((id, provider) => { if (provider === 'foobar') initCalls.add(id); }, 2),