aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-listen-fd-detached.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-listen-fd-detached.js')
-rw-r--r--test/parallel/test-listen-fd-detached.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-listen-fd-detached.js b/test/parallel/test-listen-fd-detached.js
index b2b9c74a9a..6fbc938324 100644
--- a/test/parallel/test-listen-fd-detached.js
+++ b/test/parallel/test-listen-fd-detached.js
@@ -53,7 +53,7 @@ function test() {
function next() {
console.error('output from parent = %s', json);
const child = JSON.parse(json);
- // now make sure that we can request to the child, then kill it.
+ // now make sure that we can request to the subprocess, then kill it.
http.get({
server: 'localhost',
port: child.port,
@@ -64,7 +64,7 @@ function test() {
s += c.toString();
});
res.on('end', function() {
- // kill the child before we start doing asserts.
+ // kill the subprocess before we start doing asserts.
// it's really annoying when tests leave orphans!
process.kill(child.pid, 'SIGKILL');
try {