summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-06-03 16:49:56 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-06-03 16:49:56 +0000
commit4acc1fd5062e187f7a6102f0c9b79a7dce8b21ab (patch)
tree7c6422701789ba787eee7a462861f67d757a74e9 /test
parentbafad1ca3b34631bb2ca3c9da0f624143da5f058 (diff)
set verify_mode to avoid a warning.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8561 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-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
}