aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-16 09:10:06 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-16 09:10:06 +0000
commit55251d0c83cf4c0946a2aa6aebe1bdceb9777ea6 (patch)
tree8563879de4e0154ba618db02cc7c1e57bd28947c /test
parent769715bda562feab2b30aefeda9f83c72624e163 (diff)
downloadruby-55251d0c83cf4c0946a2aa6aebe1bdceb9777ea6.tar.gz
* test/profile_test_all.rb: remove space characters from test names.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42585 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/profile_test_all.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/profile_test_all.rb b/test/profile_test_all.rb
index a24555a344..75c3ca8bba 100644
--- a/test/profile_test_all.rb
+++ b/test/profile_test_all.rb
@@ -65,7 +65,7 @@ class MiniTest::Unit::TestCase
end
def memprofile_test_all_result_result
- result = ["#{self.class}\##{self.__name__}"]
+ result = ["#{self.class}\##{self.__name__.to_s.gsub(/\s+/, '')}"]
TEST_ALL_PROFILE_PROCS.each{|proc|
proc.call(result)
}