diff options
author | Christian Neukirchen <chneukirchen@gmail.com> | 2007-12-05 13:26:27 +0100 |
---|---|---|
committer | Christian Neukirchen <chneukirchen@gmail.com> | 2007-12-05 13:26:27 +0100 |
commit | 3498930d685053eb0f698eee793653e027a3a56e (patch) | |
tree | 5fd3a7740d7777e281f79c7f425c10cdcc5a73c3 /lib | |
parent | 878d917713d943981757f4986ee287aa63ef6b18 (diff) | |
download | bacon-3498930d685053eb0f698eee793653e027a3a56e.tar.gz bacon-3498930d685053eb0f698eee793653e027a3a56e.tar.xz bacon-3498930d685053eb0f698eee793653e027a3a56e.zip |
Fix output of summary
darcs-hash:20071205122627-4fc50-8aa503b0a3e6d4e568ffad77842088bb5c6c6f21.gz
Diffstat (limited to 'lib')
-rw-r--r-- | lib/bacon.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bacon.rb b/lib/bacon.rb index 9b320f2..884f6f2 100644 --- a/lib/bacon.rb +++ b/lib/bacon.rb @@ -31,7 +31,7 @@ module Bacon end def handle_summary - puts Bacon::ErrorLog + print Bacon::ErrorLog puts "%d specifications (%d requirements), %d failures, %d errors" % [Counter[:specifications], Counter[:requirements], Counter[:failed], Counter[:errors]] |