From cd3f481fa8a284cc14e25a2c8d980143566bb205 Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Thu, 20 Dec 2012 16:18:56 -0800 Subject: [PATCH] Remove unneeded console.log --- spec/stdlib/child-process-spec.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/stdlib/child-process-spec.coffee b/spec/stdlib/child-process-spec.coffee index 985d814b4..175793aa1 100644 --- a/spec/stdlib/child-process-spec.coffee +++ b/spec/stdlib/child-process-spec.coffee @@ -121,7 +121,7 @@ describe 'Child Processes', -> cmd = "for i in {1..20000}; do echo $RANDOM; done" options = stdout: (data) -> output.push(data) - stderr: (data) -> console.log data.length + stderr: (data) -> ChildProcess.exec(cmd, options)