aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2008-06-18 18:36:04 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2008-06-18 18:36:04 -0700
commit2541f7ac478e00d2a225399d1619ccf6c33f2d9c (patch)
tree51ac01fba4e0d6633e9f2cb28f83d6795af5f2ba /activesupport
parent616bc42fd7675a42e8bd461855385d9a2b0cf5e3 (diff)
downloadrails-2541f7ac478e00d2a225399d1619ccf6c33f2d9c.tar.gz
rails-2541f7ac478e00d2a225399d1619ccf6c33f2d9c.tar.bz2
rails-2541f7ac478e00d2a225399d1619ccf6c33f2d9c.zip
Oops, include metric name in csv filename
Diffstat (limited to 'activesupport')
-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 ee09b301ba..728fa860cb 100644
--- a/activesupport/lib/active_support/testing/performance.rb
+++ b/activesupport/lib/active_support/testing/performance.rb
@@ -100,7 +100,7 @@ module ActiveSupport
protected
def output_filename
- "#{profile_options[:output]}/#{full_test_name}"
+ "#{profile_options[:output]}/#{full_test_name}_#{@metric.name}"
end
end