Fix test-stdin-from-file

This commit is contained in:
Bert Belder
2011-11-25 03:08:27 +01:00
parent 95eb729e6f
commit 232e8e19a1

View File

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