ruby-changes:33135
From: hsbt <ko1@a...>
Date: Fri, 28 Feb 2014 15:57:33 +0900 (JST)
Subject: [ruby-changes:33135] hsbt:r45214 (trunk): * test/zlib/test_zlib.rb: remove commented out code.
hsbt 2014-02-28 15:57:28 +0900 (Fri, 28 Feb 2014) New Revision: 45214 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=45214 Log: * test/zlib/test_zlib.rb: remove commented out code. Modified files: trunk/test/zlib/test_zlib.rb Index: test/zlib/test_zlib.rb =================================================================== --- test/zlib/test_zlib.rb (revision 45213) +++ test/zlib/test_zlib.rb (revision 45214) @@ -415,7 +415,6 @@ if defined? Zlib https://github.com/ruby/ruby/blob/trunk/test/zlib/test_zlib.rb#L415 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 https://github.com/ruby/ruby/blob/trunk/test/zlib/test_zlib.rb#L422 z = Zlib::Inflate.new assert_equal(true, z.sync("\0" * 100 + s)) - #assert_equal(true, z.sync_point?) end def test_set_dictionary -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/