summaryrefslogtreecommitdiff
path: root/spec/support/http_io/http_io_helpers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/http_io/http_io_helpers.rb')
-rw-r--r--spec/support/http_io/http_io_helpers.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/support/http_io/http_io_helpers.rb b/spec/support/http_io/http_io_helpers.rb
index 31e07e720cd..2c68c2cd9a6 100644
--- a/spec/support/http_io/http_io_helpers.rb
+++ b/spec/support/http_io/http_io_helpers.rb
@@ -44,10 +44,11 @@ module HttpIOHelpers
def remote_trace_body
@remote_trace_body ||= File.read(expand_fixture_path('trace/sample_trace'))
+ .force_encoding(Encoding::BINARY)
end
def remote_trace_size
- remote_trace_body.length
+ remote_trace_body.bytesize
end
def set_smaller_buffer_size_than(file_size)