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

Import CSV 3.0.9

This fixes test failures on Windows.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67561 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kou 2019-04-15 02:05:03 +00:00
parent e3b6c7c7eb
commit 3791bdf080
2 changed files with 2 additions and 2 deletions

2
NEWS
View file

@ -62,7 +62,7 @@ Regexp/String::
CSV::
* Upgrade to 3.0.8.
* Upgrade to 3.0.9.
See https://github.com/ruby/csv/blob/master/NEWS.md.
Date::

View file

@ -10,7 +10,7 @@ class TestCSVInterfaceRead < Test::Unit::TestCase
@data = ""
@data << "1\t2\t3\r\n"
@data << "4\t5\r\n"
@input = Tempfile.new(["interface-read", ".csv"], options: {binmode: true})
@input = Tempfile.new(["interface-read", ".csv"], binmode: true)
@input << @data
@input.rewind
@rows = [