aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2008-06-20 00:36:59 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2008-06-20 00:36:59 -0700
commit879245de1ce294e8951927f0e694333746772187 (patch)
tree34c029758af719c59e34220a90f03a85c93a476f /activesupport/lib/active_support
parent83c3e9903d2ad76ef4aea1d64d6514443f6ad438 (diff)
downloadrails-879245de1ce294e8951927f0e694333746772187.tar.gz
rails-879245de1ce294e8951927f0e694333746772187.tar.bz2
rails-879245de1ce294e8951927f0e694333746772187.zip
Tired of seeing <foo>/run
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r--activesupport/lib/active_support/testing/performance.rb2
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