summaryrefslogtreecommitdiff
path: root/test/async-hooks/test-signalwrap.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/async-hooks/test-signalwrap.js')
-rw-r--r--test/async-hooks/test-signalwrap.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/async-hooks/test-signalwrap.js b/test/async-hooks/test-signalwrap.js
index 5bc02e6dc4..b906355af7 100644
--- a/test/async-hooks/test-signalwrap.js
+++ b/test/async-hooks/test-signalwrap.js
@@ -42,7 +42,7 @@ function onsigusr2() {
signal1, { init: 1, before: 1 },
' signal1: when first SIGUSR2 handler is called for the first time');
- // trigger same signal handler again
+ // Trigger same signal handler again
exec(`kill -USR2 ${process.pid}`);
} else {
// second invocation
@@ -50,7 +50,7 @@ function onsigusr2() {
signal1, { init: 1, before: 2, after: 1 },
'signal1: when first SIGUSR2 handler is called for the second time');
- // install another signal handler
+ // Install another signal handler
process.removeAllListeners('SIGUSR2');
process.on('SIGUSR2', common.mustCall(onsigusr2Again));