diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-06-03 17:14:06 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-06-03 17:14:06 +0000 |
commit | 9d76637ddde901556f506e7c2569a93167dc237a (patch) | |
tree | 595d2e74b422e4e06579866be12670df59e55dcf | |
parent | cf342c53b6f9fb9f975d1c0e2f6e182411fd8ad8 (diff) | |
download | ruby-9d76637ddde901556f506e7c2569a93167dc237a.tar.gz ruby-9d76637ddde901556f506e7c2569a93167dc237a.tar.xz ruby-9d76637ddde901556f506e7c2569a93167dc237a.zip |
add ML number.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8562 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | test/net/http/test_https_proxy.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/net/http/test_https_proxy.rb b/test/net/http/test_https_proxy.rb index 559e28ba0..42e9ba713 100644 --- a/test/net/http/test_https_proxy.rb +++ b/test/net/http/test_https_proxy.rb @@ -11,7 +11,6 @@ class HTTPSProxyTest < Test::Unit::TestCase http.use_ssl = true http.verify_mode = OpenSSL::SSL::VERIFY_NONE http.start {|http| } - p 1 } sock = serv.accept proxy_request = sock.gets("\r\n\r\n") @@ -20,7 +19,8 @@ class HTTPSProxyTest < Test::Unit::TestCase "Host: foo.example.org:8000\r\n" + "Proxy-Authorization: Basic dXNlcjpwYXNzd29yZA==\r\n" + "\r\n", - proxy_request) + proxy_request, + "[ruby-dev:25673]") } end end |