From c8c02c9cc39444ad89b4ceba09d2ed06f4cff9dc Mon Sep 17 00:00:00 2001 From: nahi Date: Wed, 3 Aug 2011 15:38:44 +0000 Subject: [PATCH] Cosmetic change of Hash literal. 'BindAddress: var' => ':BindAddress => var' according to other configurations. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32828 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/xmlrpc/test_webrick_server.rb | 2 +- test/xmlrpc/webrick_testing.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/xmlrpc/test_webrick_server.rb b/test/xmlrpc/test_webrick_server.rb index e66a46718a..d3aa9cd102 100644 --- a/test/xmlrpc/test_webrick_server.rb +++ b/test/xmlrpc/test_webrick_server.rb @@ -46,7 +46,7 @@ class Test_Webrick < Test::Unit::TestCase def setup_http_server(port, use_ssl) option = { - BindAddress: "localhost", + :BindAddress => "localhost", :Port => port, :SSLEnable => use_ssl, } diff --git a/test/xmlrpc/webrick_testing.rb b/test/xmlrpc/webrick_testing.rb index b09862225e..300f690b64 100644 --- a/test/xmlrpc/webrick_testing.rb +++ b/test/xmlrpc/webrick_testing.rb @@ -13,7 +13,7 @@ module WEBrick_Testing @__server_thread = Thread.new { @__server = WEBrick::HTTPServer.new( { - BindAddress: "localhost", + :BindAddress => "localhost", :Logger => DummyLog.new, :AccessLog => [], :StartCallback => proc { @__started = true }