Fix missing variable in tests

This commit is contained in:
Mitchell Hashimoto 2011-11-24 14:15:36 -07:00
parent 87767e24d0
commit 2dc9bad97d
1 changed files with 1 additions and 0 deletions

View File

@ -100,6 +100,7 @@ module Acceptance
readers.each do |r|
data = r.read_nonblock(1024)
io_data[r] += data
io_name = r == stdout ? "stdout" : "stderr"
@logger.debug(data)
yield io_name.to_sym, data if block_given?
end