aboutsummaryrefslogtreecommitdiffstats
path: root/test/zlib
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-18 12:05:09 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-18 12:05:09 +0000
commit93156392dd4a80e1ee61a52c6a227845043a8026 (patch)
tree068176611e7b068e08521ac6d625750759e98c29 /test/zlib
parentda61291a25faae95f33de6756b2eaa4804d5ef2b (diff)
downloadruby-93156392dd4a80e1ee61a52c6a227845043a8026.tar.gz
* test/socket/test_addrinfo.rb: remove unused variables.
* test/socket/test_nonblock.rb: ditto. * test/socket/test_socket.rb: ditto. * test/socket/test_unix.rb: ditto. * test/testunit/test_parallel.rb: ditto. * test/webrick/test_filehandler.rb: ditto. * test/xmlrpc/test_features.rb: ditto. * test/zlib/test_zlib.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45034 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/zlib')
-rw-r--r--test/zlib/test_zlib.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/zlib/test_zlib.rb b/test/zlib/test_zlib.rb
index 3122e7769e..5dd5bcf51d 100644
--- a/test/zlib/test_zlib.rb
+++ b/test/zlib/test_zlib.rb
@@ -162,7 +162,7 @@ if defined? Zlib
assert_equal(false, z.closed?)
z << "foo"
assert_equal(false, z.closed?)
- s = z.finish
+ z.finish
assert_equal(false, z.closed?)
z.close
assert_equal(true, z.closed?)
@@ -309,9 +309,6 @@ if defined? Zlib
def test_inflate_partial_input
deflated = Zlib::Deflate.deflate "\0"
- a = deflated[0...2]
- b = deflated[2..-1]
-
z = Zlib::Inflate.new
inflated = ""