mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/webrick/test_httpresponse.rb (test_send_body_*_chunked): these
expectations assumes that the IOs are binmode. fixed test failures introduced at r42427 on Windows. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42433 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
edde029176
commit
647fc21a35
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
Thu Aug 8 12:11:43 2013 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* test/webrick/test_httpresponse.rb (test_send_body_*_chunked): these
|
||||
expectations assumes that the IOs are binmode. fixed test failures
|
||||
introduced at r42427 on Windows.
|
||||
|
||||
Thu Aug 8 10:27:18 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* range.c (range_last): revert r42400. [Bug #8739]
|
||||
|
|
|
@ -104,6 +104,7 @@ module WEBrick
|
|||
|
||||
w.close
|
||||
|
||||
r.binmode
|
||||
assert_equal "5\r\nhello\r\n0\r\n\r\n", r.read
|
||||
end
|
||||
|
||||
|
@ -118,6 +119,7 @@ module WEBrick
|
|||
|
||||
w.close
|
||||
|
||||
r.binmode
|
||||
assert_equal "5\r\nhello\r\n0\r\n\r\n", r.read
|
||||
end
|
||||
|
||||
|
@ -132,6 +134,7 @@ module WEBrick
|
|||
|
||||
w.close
|
||||
|
||||
r.binmode
|
||||
assert_equal "5\r\nhello\r\n0\r\n\r\n", r.read
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue