From b337577cf1b8321a8c814a331b046f6a505836af Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Thu, 31 May 2012 01:46:53 +0200 Subject: [PATCH] test: update pummel/test-exec ChildProcess.prototype._internal is called ChildProcess.prototype._handle now. --- test/pummel/test-exec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/pummel/test-exec.js b/test/pummel/test-exec.js index 3bcf49e9027..70771ab4e19 100644 --- a/test/pummel/test-exec.js +++ b/test/pummel/test-exec.js @@ -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(); });