From 31fdd93aa04617f1b53f764bc1f9936283b7f925 Mon Sep 17 00:00:00 2001 From: theanarkh Date: Sun, 29 Jan 2023 01:10:51 +0800 Subject: [PATCH] test: fix logInTimeout is not function PR-URL: https://github.com/nodejs/node/pull/46348 Refs: https://github.com/nodejs/node/pull/44390 Reviewed-By: Luigi Pinca Reviewed-By: Yagiz Nizipli --- test/parallel/test-child-process-exec-timeout-kill.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/parallel/test-child-process-exec-timeout-kill.js b/test/parallel/test-child-process-exec-timeout-kill.js index 0be04e8607f3d0..845fd1eaece24d 100644 --- a/test/parallel/test-child-process-exec-timeout-kill.js +++ b/test/parallel/test-child-process-exec-timeout-kill.js @@ -8,13 +8,13 @@ const cp = require('child_process'); const { cleanupStaleProcess, - logInTimeout, + logAfterTime, kExpiringChildRunTime, kExpiringParentTimer, } = require('../common/child_process'); if (process.argv[2] === 'child') { - logInTimeout(kExpiringChildRunTime); + logAfterTime(kExpiringChildRunTime); return; }