prime.rb: remove alias after timeout test

* test/test_prime.rb: remove alias after timeout test.

* lib/prime.rb: fix typo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58813 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
stomar 2017-05-20 10:21:44 +00:00
Родитель 508091d9cc
Коммит 82092f4bb7
2 изменённых файлов: 2 добавлений и 1 удалений

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

@ -419,7 +419,7 @@ class Prime
end
end
# Internal use. An implementation of eratosthenes' sieve
# Internal use. An implementation of Eratosthenes' sieve
class EratosthenesSieve
include Singleton

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

@ -189,6 +189,7 @@ class TestPrime < Test::Unit::TestCase
ensure
class << Integer
alias_method :sqrt, :org_sqrt
remove_method :org_sqrt
end
end