Browse Source

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

v0.9.1-release
Charlie McConnell 13 years ago
committed by isaacs
parent
commit
8a068ce849
  1. 2
      test/simple/test-child-process-stdout-flush.js

2
test/simple/test-child-process-stdout-flush.js

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

Loading…
Cancel
Save