summaryrefslogtreecommitdiff
path: root/test/csv
diff options
context:
space:
mode:
authorkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-04-15 02:05:03 +0000
committerkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-04-15 02:05:03 +0000
commit3791bdf08084b40f0e6f499a83715639c7d25b1e (patch)
tree19850f8c1ca093e7339c831e134e861706543b6a /test/csv
parente3b6c7c7ebca1b051dbaa6f33494e92f5638fcc9 (diff)
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
Diffstat (limited to 'test/csv')
-rw-r--r--test/csv/interface/test_read.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/csv/interface/test_read.rb b/test/csv/interface/test_read.rb
index 393619b763..8fefbbb172 100644
--- a/test/csv/interface/test_read.rb
+++ b/test/csv/interface/test_read.rb
@@ -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 = [