s/exit/close/ in test-child-process-stdout-flush, fixes #3449

pull/24503/head
Charlie McConnell 2012-06-15 23:19:31 -07:00 committed by isaacs
parent bc18bf4ec0
commit 8a068ce849
1 changed files with 1 additions and 1 deletions

View File

@ -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');
});