summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-12-10 10:13:03 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-12-10 10:13:03 +0000
commit2b9d72ee25f7309c64448961fe3387bccc32b24d (patch)
treeffe67c6bf12388ea293583f9ecf7fc3fa75c722c
parentfa03024f577c61d1a0fc378e926453a8be754c85 (diff)
downloadruby-2b9d72ee25f7309c64448961fe3387bccc32b24d.tar.gz
ruby-2b9d72ee25f7309c64448961fe3387bccc32b24d.tar.xz
ruby-2b9d72ee25f7309c64448961fe3387bccc32b24d.zip
unset HTTP_PROXY and FTP_PROXY.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@26063 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--test/open-uri/test_open-uri.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/open-uri/test_open-uri.rb b/test/open-uri/test_open-uri.rb
index 3c596ce46..754f2d62a 100644
--- a/test/open-uri/test_open-uri.rb
+++ b/test/open-uri/test_open-uri.rb
@@ -41,7 +41,7 @@ class TestOpenURI < Test::Unit::TestCase
end
def setup
- @proxies = %w[http_proxy ftp_proxy no_proxy]
+ @proxies = %w[http_proxy HTTP_PROXY ftp_proxy FTP_PROXY no_proxy]
@old_proxies = @proxies.map {|k| ENV[k] }
@proxies.each {|k| ENV[k] = nil }
end