aboutsummaryrefslogtreecommitdiffstats
path: root/test/net
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-24 23:23:46 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-24 23:23:46 +0000
commit88e7cf881c939356b757d6fc1e8c944a8c047508 (patch)
tree3cdb9166b5a776de1f3f8f864642836c10748116 /test/net
parent02268781d5ff4af7b8a745ef8fea1ba5563043aa (diff)
downloadruby-88e7cf881c939356b757d6fc1e8c944a8c047508.tar.gz
fix common misspelling [ci skip]
* compile.c, cont.c, doc, man: fix common misspelling. [ruby-core:72466] [Bug #11870] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53299 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/net')
-rw-r--r--test/net/http/test_http.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/net/http/test_http.rb b/test/net/http/test_http.rb
index d8983e91cd..f1d3ede53e 100644
--- a/test/net/http/test_http.rb
+++ b/test/net/http/test_http.rb
@@ -151,12 +151,12 @@ class TestNetHTTP < Test::Unit::TestCase
def test_proxy_port
clean_http_proxy_env do
- http = Net::HTTP.new 'exmaple', nil, 'proxy.example'
+ http = Net::HTTP.new 'example', nil, 'proxy.example'
assert_equal 'proxy.example', http.proxy_address
assert_equal 80, http.proxy_port
- http = Net::HTTP.new 'exmaple', nil, 'proxy.example', 8000
+ http = Net::HTTP.new 'example', nil, 'proxy.example', 8000
assert_equal 8000, http.proxy_port
- http = Net::HTTP.new 'exmaple', nil
+ http = Net::HTTP.new 'example', nil
assert_equal nil, http.proxy_port
end
end