summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/net/http/utils.rb1
-rw-r--r--test/webrick/utils.rb1
2 files changed, 0 insertions, 2 deletions
diff --git a/test/net/http/utils.rb b/test/net/http/utils.rb
index 592bbd21cc..7110a2432f 100644
--- a/test/net/http/utils.rb
+++ b/test/net/http/utils.rb
@@ -49,7 +49,6 @@ module TestNetHTTPUtils
:Port => 0,
:Logger => WEBrick::Log.new(NullWriter.new),
:AccessLog => [],
- :ShutdownSocketWithoutClose => true,
:ServerType => Thread,
}
server_config[:OutputBufferSize] = 4 if config('chunked')
diff --git a/test/webrick/utils.rb b/test/webrick/utils.rb
index 10bd7a995b..f1b24ccdd6 100644
--- a/test/webrick/utils.rb
+++ b/test/webrick/utils.rb
@@ -37,7 +37,6 @@ module TestWEBrick
log = proc { "webrick log start:\n" + log_string.gsub(/^/, " ").chomp + "\nwebrick log end" }
server = klass.new({
:BindAddress => "127.0.0.1", :Port => 0,
- :ShutdownSocketWithoutClose =>true,
:ServerType => Thread,
:Logger => WEBrick::Log.new(logger),
:AccessLog => [[logger, ""]]