summaryrefslogtreecommitdiff
path: root/test/net
diff options
context:
space:
mode:
Diffstat (limited to 'test/net')
-rw-r--r--test/net/http/test_https_proxy.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/net/http/test_https_proxy.rb b/test/net/http/test_https_proxy.rb
index c50620aec3..559e28ba0c 100644
--- a/test/net/http/test_https_proxy.rb
+++ b/test/net/http/test_https_proxy.rb
@@ -9,6 +9,7 @@ class HTTPSProxyTest < Test::Unit::TestCase
proxy = Net::HTTP.Proxy(ipaddr, port, 'user', 'password')
http = proxy.new("foo.example.org", 8000)
http.use_ssl = true
+ http.verify_mode = OpenSSL::SSL::VERIFY_NONE
http.start {|http| }
p 1
}