summaryrefslogtreecommitdiff
path: root/test/xmlrpc
diff options
context:
space:
mode:
Diffstat (limited to 'test/xmlrpc')
-rw-r--r--test/xmlrpc/test_webrick_server.rb2
-rw-r--r--test/xmlrpc/webrick_testing.rb2
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 }