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

Commit

Permalink
s/exit/close/ in test-child-process-stdout-flush, fixes #3449
Browse files Browse the repository at this point in the history
  • Loading branch information
AvianFlu authored and isaacs committed Jun 16, 2012
1 parent bc18bf4 commit 8a068ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/simple/test-child-process-stdout-flush.js
Expand Up @@ -46,7 +46,7 @@ child.stdout.on('data', function(data) {
console.log(count);
});

child.on('exit', function(data) {
child.on('close', function(data) {
assert.equal(n, count);
console.log('okay');
});

0 comments on commit 8a068ce

Please sign in to comment.