diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2008-06-18 18:36:04 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2008-06-18 18:36:04 -0700 |
commit | 2541f7ac478e00d2a225399d1619ccf6c33f2d9c (patch) | |
tree | 51ac01fba4e0d6633e9f2cb28f83d6795af5f2ba | |
parent | 616bc42fd7675a42e8bd461855385d9a2b0cf5e3 (diff) | |
download | rails-2541f7ac478e00d2a225399d1619ccf6c33f2d9c.tar.gz rails-2541f7ac478e00d2a225399d1619ccf6c33f2d9c.tar.bz2 rails-2541f7ac478e00d2a225399d1619ccf6c33f2d9c.zip |
Oops, include metric name in csv filename
-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 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 |