Remove debug comment

This commit is contained in:
Thibault Jouan 2015-04-24 19:57:51 +00:00
parent cd06f99e9f
commit f5bd8872c5

View File

@ -33,7 +33,6 @@ module Uh
output = -> { @process.stdout + @process.stderr }
timeout_until do
case message
#when Regexp then output.call.scan(message).size >= times
when Regexp then (value = output.call.scan(message)).size >= times
when String then output.call.include? message
end