summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-12-10 10:26:55 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-12-10 10:26:55 +0000
commit136c25ebf035c62933c248b5f833463466021541 (patch)
tree29ae4846a32f7ba6463427a9cd3cab33cc946db9 /test
parente82e2beb7c2a10a0f9dc73f0356f2cc2a02bfd66 (diff)
unset HTTP_PROXY, etc.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26064 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/open-uri/test_ssl.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/open-uri/test_ssl.rb b/test/open-uri/test_ssl.rb
index 048227082d..0502f76346 100644
--- a/test/open-uri/test_ssl.rb
+++ b/test/open-uri/test_ssl.rb
@@ -35,7 +35,7 @@ class TestOpenURISSL < Test::Unit::TestCase
end
def setup
- @proxies = %w[http_proxy https_proxy ftp_proxy no_proxy]
+ @proxies = %w[http_proxy HTTP_PROXY https_proxy HTTPS_PROXY ftp_proxy FTP_PROXY no_proxy]
@old_proxies = @proxies.map {|k| ENV[k] }
@proxies.each {|k| ENV[k] = nil }
end