1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
hsbt 2014-02-28 06:57:28 +00:00
parent 99431e7355
commit f6ae77d97a

View file

@ -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