diff --git a/test/fixtures/echo.js b/test/fixtures/echo.js index 1e6c6b9598ec..e5fc06b99c6c 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(); -});