summaryrefslogtreecommitdiff
path: root/spec/ruby/library/zlib/inflate_spec.rb
diff options
context:
space:
mode:
authorBenoit Daloze <eregontp@gmail.com>2019-11-30 21:26:52 +0100
committerBenoit Daloze <eregontp@gmail.com>2019-11-30 21:26:52 +0100
commit1243255c3a36433041012b6107a5ac48658a0895 (patch)
tree04440f84b48999ff08d4a2a16d066d0ad731400e /spec/ruby/library/zlib/inflate_spec.rb
parentab8345271eb87ff155d8bd5f22f53a4cf2902c26 (diff)
Update to ruby/spec@4eec3dc
Diffstat (limited to 'spec/ruby/library/zlib/inflate_spec.rb')
-rw-r--r--spec/ruby/library/zlib/inflate_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/library/zlib/inflate_spec.rb b/spec/ruby/library/zlib/inflate_spec.rb
index 393bea4f3c..42c8dc5fbe 100644
--- a/spec/ruby/library/zlib/inflate_spec.rb
+++ b/spec/ruby/library/zlib/inflate_spec.rb
@@ -1,7 +1,7 @@
require_relative '../../spec_helper'
require "zlib"
-describe "Zlib#inflate" do
+describe "Zlib.inflate" do
it "inflates some data" do
Zlib.inflate([120, 156, 51, 52, 132, 1, 0, 10, 145, 1, 235].pack('C*')).should == "1" * 10
end