* test/bigdecimal/test_bigdecimal.rb (TestBigDecimal#test_gc):

fixed test subject.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27702 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2010-05-09 14:38:56 +00:00
Родитель d4fb3227f9
Коммит c4546f190a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -703,7 +703,7 @@ class TestBigDecimal < Test::Unit::TestCase
bug3258 = '[ruby-dev:41213]'
stress, GC.stress = GC.stress, true
1000.times do |i|
b = BigDecimal.new("1"+"0"*i).to_s
b = BigDecimal.new("1"+"0"*i)
assert_equal([1, "1", 10, i+1], b.split, bug3258)
end
ensure