Skip to content

Commit cfeba09

Browse files
committed
do not care about the SSLSocket#ssl_version test with SSLv3 (depends on JDK used)
1 parent fbf5743 commit cfeba09

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

src/test/ruby/ssl/test_ssl.rb

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -82,19 +82,6 @@ def test_post_connection_check
8282
end
8383
end
8484

85-
def test_ssl_version_sslv3
86-
ctx_proc = Proc.new do |ctx|
87-
ctx.ssl_version = "SSLv3"
88-
end
89-
start_server(PORT, OpenSSL::SSL::VERIFY_NONE, true, :ctx_proc => ctx_proc) do |server, port|
90-
sock = TCPSocket.new("127.0.0.1", port)
91-
ssl = OpenSSL::SSL::SSLSocket.new(sock)
92-
ssl.connect
93-
assert_equal("SSLv3", ssl.ssl_version)
94-
ssl.close
95-
end
96-
end
97-
9885
def test_ssl_version_tlsv1
9986
ctx_proc = Proc.new do |ctx|
10087
ctx.ssl_version = "TLSv1"

0 commit comments

Comments
 (0)