From 5337952a05ac16ed6e1bd177306592c9b3f5b648 Mon Sep 17 00:00:00 2001 From: theanarkh Date: Wed, 25 Jan 2023 21:51:07 +0800 Subject: [PATCH] test: fix logInTimeout is not function --- 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; }