Skip to content

Commit

Permalink
changed progress bar text to say "Hydra Testing"
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Gauthier committed Mar 25, 2010
1 parent d000a61 commit 2a468aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/hydra/listener/progress_bar.rb
Expand Up @@ -33,7 +33,7 @@ def render_progress_bar
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 '>'
Expand Down

0 comments on commit 2a468aa

Please sign in to comment.