Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
test: update pummel/test-exec
Browse files Browse the repository at this point in the history
ChildProcess.prototype._internal is called ChildProcess.prototype._handle now.
  • Loading branch information
bnoordhuis committed May 30, 2012
1 parent dc8b488 commit b337577
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/pummel/test-exec.js
Expand Up @@ -78,7 +78,7 @@ process.nextTick(function() {
console.log('kill pid %d', killMeTwice.pid);
// make sure there is no race condition in starting the process
// the PID SHOULD exist directly following the exec() call.
assert.equal('number', typeof killMeTwice._internal.pid);
assert.equal('number', typeof killMeTwice._handle.pid);
// Kill the process
killMeTwice.kill();
});
Expand Down

0 comments on commit b337577

Please sign in to comment.