diff options
author | Bert Belder <piscisaureus@Berts-MacBook-Pro.local> | 2011-11-25 03:08:27 +0100 |
---|---|---|
committer | Bert Belder <piscisaureus@Berts-MacBook-Pro.local> | 2011-11-25 03:08:27 +0100 |
commit | 232e8e19a1f7ff482acaba708d30eaea0209467e (patch) | |
tree | 87bc28cd4ade5ba94502adfb73598f28e20372b4 /test/fixtures/echo.js | |
parent | 95eb729e6fff5c06ce2825381d9ed875be1b8508 (diff) | |
download | node-new-232e8e19a1f7ff482acaba708d30eaea0209467e.tar.gz |
Fix test-stdin-from-file
Diffstat (limited to 'test/fixtures/echo.js')
-rw-r--r-- | test/fixtures/echo.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/fixtures/echo.js b/test/fixtures/echo.js index 1e6c6b9598..e5fc06b99c 100644 --- a/test/fixtures/echo.js +++ b/test/fixtures/echo.js @@ -29,7 +29,3 @@ var stdin = process.openStdin(); stdin.on('data', function(data) { process.stdout.write(data.toString()); }); - -stdin.on('end', function() { - process.stdout.end(); -}); |