diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2008-06-20 00:36:59 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2008-06-20 00:36:59 -0700 |
commit | 879245de1ce294e8951927f0e694333746772187 (patch) | |
tree | 34c029758af719c59e34220a90f03a85c93a476f /activesupport | |
parent | 83c3e9903d2ad76ef4aea1d64d6514443f6ad438 (diff) | |
download | rails-879245de1ce294e8951927f0e694333746772187.tar.gz rails-879245de1ce294e8951927f0e694333746772187.tar.bz2 rails-879245de1ce294e8951927f0e694333746772187.zip |
Tired of seeing <foo>/run
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/testing/performance.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/testing/performance.rb b/activesupport/lib/active_support/testing/performance.rb index cadcb155c1..1f8a5eec8f 100644 --- a/activesupport/lib/active_support/testing/performance.rb +++ b/activesupport/lib/active_support/testing/performance.rb @@ -99,7 +99,7 @@ module ActiveSupport def report rate = @total / profile_options[:runs] - '%20s: %s/run' % [@metric.name, @metric.format(rate)] + '%20s: %s' % [@metric.name, @metric.format(rate)] end protected |