changed progress bar text to say "Hydra Testing"

This commit is contained in:
Nick Gauthier 2010-03-25 14:38:03 -04:00
parent d000a61419
commit 2a468aa2c8
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ module Hydra #:nodoc:
width = 30
complete = ((@files_completed.to_f / @total_files.to_f) * width).to_i
@output.write "\r" # move to beginning
@output.write 'Progress ['
@output.write 'Hydra Testing ['
@output.write @errors ? "\033[1;31m" : "\033[1;32m"
complete.times{@output.write '#'}
@output.write '>'