Skip to content

Commit

Permalink
s/exit/close/ in test-child-process-stdout-flush, fixes nodejs#3449
Browse files Browse the repository at this point in the history
  • Loading branch information
AvianFlu committed Jun 16, 2012
1 parent c49f3b5 commit 41c5e92
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 41c5e92

Please sign in to comment.