aboutsummaryrefslogtreecommitdiffstats
path: root/test/zlib
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-28 06:57:28 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-28 06:57:28 +0000
commitf6ae77d97ad281610e80407f9f2b0a6c28fe0fe1 (patch)
tree8243dda59a88e260ec257a442e630606f70a91f9 /test/zlib
parent99431e7355cadb97049d54bcffe5aeb2ba1c8a47 (diff)
downloadruby-f6ae77d97ad281610e80407f9f2b0a6c28fe0fe1.tar.gz
* test/zlib/test_zlib.rb: remove commented out code.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45214 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/zlib')
-rw-r--r--test/zlib/test_zlib.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/zlib/test_zlib.rb b/test/zlib/test_zlib.rb
index 5dd5bcf51d..f381b2ec0d 100644
--- a/test/zlib/test_zlib.rb
+++ b/test/zlib/test_zlib.rb
@@ -415,7 +415,6 @@ if defined? Zlib
z = Zlib::Inflate.new
assert_raise(Zlib::DataError) { z << "\0" * 100 + s }
assert_equal(true, z.sync(""))
- #assert_equal(true, z.sync_point?)
z = Zlib::Inflate.new
assert_equal(false, z.sync("\0" * 100))
@@ -423,7 +422,6 @@ if defined? Zlib
z = Zlib::Inflate.new
assert_equal(true, z.sync("\0" * 100 + s))
- #assert_equal(true, z.sync_point?)
end
def test_set_dictionary