summaryrefslogtreecommitdiff
path: root/test/net
diff options
context:
space:
mode:
Diffstat (limited to 'test/net')
-rw-r--r--test/net/http/test_http.rb4
-rw-r--r--test/net/http/utils.rb1
2 files changed, 3 insertions, 2 deletions
diff --git a/test/net/http/test_http.rb b/test/net/http/test_http.rb
index 8b23edf61c..50d1fe2eae 100644
--- a/test/net/http/test_http.rb
+++ b/test/net/http/test_http.rb
@@ -191,9 +191,9 @@ module TestNetHTTP_version_1_2_methods
assert_kind_of Net::HTTPResponse, res
assert_not_nil res['content-length']
assert_equal $test_net_http_data.size, res['content-length'].to_i
- f = StringIO.new
+ f = StringIO.new("".force_encoding("ASCII-8BIT"))
res.read_body f
- assert_equal $test_net_http_data.size, f.string.size
+ assert_equal $test_net_http_data.bytesize, f.string.bytesize
assert_equal $test_net_http_data.encoding, f.string.encoding
assert_equal $test_net_http_data, f.string
}
diff --git a/test/net/http/utils.rb b/test/net/http/utils.rb
index 766bf71c46..e685a8ff61 100644
--- a/test/net/http/utils.rb
+++ b/test/net/http/utils.rb
@@ -71,6 +71,7 @@ module TestNetHTTPUtils
$test_net_http = nil
$test_net_http_data = (0...256).to_a.map {|i| i.chr }.join('') * 64
+ $test_net_http_data.force_encoding("ASCII-8BIT")
$test_net_http_data_type = 'application/octet-stream'
class Servlet < WEBrick::HTTPServlet::AbstractServlet