summaryrefslogtreecommitdiff
path: root/spec/support/artifice/compact_index.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/artifice/compact_index.rb')
-rw-r--r--spec/support/artifice/compact_index.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/spec/support/artifice/compact_index.rb b/spec/support/artifice/compact_index.rb
index f97c2b3fbc..4f01690ae4 100644
--- a/spec/support/artifice/compact_index.rb
+++ b/spec/support/artifice/compact_index.rb
@@ -57,11 +57,7 @@ class CompactIndexAPI < Endpoint
end
def slice_body(body, range)
- if body.respond_to?(:byteslice)
- body.byteslice(range)
- else # pre-1.9.3
- body.unpack("@#{range.first}a#{range.end + 1}").first
- end
+ body.byteslice(range)
end
def gems(gem_repo = GEM_REPO)