git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56531 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2016-10-31 15:17:26 +00:00
Родитель 58c5011b3e
Коммит 478606bfd5
3 изменённых файлов: 3 добавлений и 3 удалений

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

@ -77162,7 +77162,7 @@ Sun May 22 21:54:06 2005 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
Sun May 22 19:11:35 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
* ext/openssl/lib/openssl/ssl.rb (OpenSSL::SSL::SSLServer#intialize):
* ext/openssl/lib/openssl/ssl.rb (OpenSSL::SSL::SSLServer#initialize):
should initialize session id context. [ruby-core:4663]
* ext/openssl/ossl_ssl.c (ossl_sslctx_setup): add session id support.

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

@ -826,7 +826,7 @@ class TestHash < Test::Unit::TestCase
assert_equal([], expected - vals)
end
def test_intialize_wrong_arguments
def test_initialize_wrong_arguments
assert_raise(ArgumentError) do
Hash.new(0) { }
end

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

@ -602,7 +602,7 @@ class TestThread < Test::Unit::TestCase
end
def test_no_valid_cfp
skip 'with win32ole, cannot run this testcase because win32ole redefines Thread#intialize' if defined?(WIN32OLE)
skip 'with win32ole, cannot run this testcase because win32ole redefines Thread#initialize' if defined?(WIN32OLE)
bug5083 = '[ruby-dev:44208]'
assert_equal([], Thread.new(&Module.method(:nesting)).value, bug5083)
assert_instance_of(Thread, Thread.new(:to_s, &Class.new.method(:undef_method)).join, bug5083)