git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62019 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
yui-knk 2018-01-24 00:12:53 +00:00
Родитель 49a23c27de
Коммит c786db207a
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -560,7 +560,7 @@ class Rational_Test < Test::Unit::TestCase
assert_equal([Rational(2.2),Rational(1)], Rational(1).coerce(2.2))
assert_equal([Rational(2),Rational(1)], Rational(1).coerce(Rational(2)))
assert_nothing_raised(TypeError, '[Bug #5020] [ruby-devl:44088]') do
assert_nothing_raised(TypeError, '[Bug #5020] [ruby-dev:44088]') do
Rational(1,2).coerce(Complex(1,1))
end
end