Skip to content

Commit

Permalink
Merge pull request #38 from znz/fix-unescaped-.-in-regexp
Browse files Browse the repository at this point in the history
Fix unescaped `.` in Regexp
  • Loading branch information
hsbt authored Jan 13, 2022
2 parents 11e6fb1 + 0502274 commit 38d8a19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/net/http/test_https.rb
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def test_post
def test_session_reuse
# FIXME: The new_session_cb is known broken for clients in OpenSSL 1.1.0h.
# See https://github.com/openssl/openssl/pull/5967 for details.
omit if OpenSSL::OPENSSL_LIBRARY_VERSION =~ /OpenSSL 1.1.0h/
omit if OpenSSL::OPENSSL_LIBRARY_VERSION.include?('OpenSSL 1.1.0h')

http = Net::HTTP.new(HOST, config("port"))
http.use_ssl = true
Expand All @@ -164,7 +164,7 @@ def test_session_reuse

def test_session_reuse_but_expire
# FIXME: The new_session_cb is known broken for clients in OpenSSL 1.1.0h.
omit if OpenSSL::OPENSSL_LIBRARY_VERSION =~ /OpenSSL 1.1.0h/
omit if OpenSSL::OPENSSL_LIBRARY_VERSION.include?('OpenSSL 1.1.0h')

http = Net::HTTP.new(HOST, config("port"))
http.use_ssl = true
Expand Down

0 comments on commit 38d8a19

Please sign in to comment.