diff options
author | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-07-01 14:52:05 +0000 |
---|---|---|
committer | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-07-01 14:52:05 +0000 |
commit | 9c4ef4b191a1e6b9abdbb21c7c709d1d0f2397e6 () | |
tree | 3f67527150db1bdb3fc8aa6345bba559c4e76099 | |
parent | 051a74991971060f310c875f141fa4778424fd8b (diff) |
fix a failure without zlib
* test/net/http/test_httpresponse.rb (HTTPResponseTest#test_read_body_content_encoding_deflate_uppercase): fix failure without zlib. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51091 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | test/net/http/test_httpresponse.rb | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ Wed Jul 1 10:54:56 2015 SHIBATA Hiroshi <[email protected]> * Add test for Enumerable#none? [fix GH-950] by @yui-knk @@ -126,7 +126,7 @@ EOS assert_equal nil, res['content-encoding'] assert_equal 'hello', body else - assert_equal 'deflate', res['content-encoding'] assert_equal "x\x9C\xCBH\xCD\xC9\xC9\a\x00\x06,\x02\x15", body end end |