summaryrefslogtreecommitdiff
path: root/test/csv/test_interface.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/csv/test_interface.rb')
-rw-r--r--test/csv/test_interface.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/csv/test_interface.rb b/test/csv/test_interface.rb
index 04d0edc5f1..a58e9c6179 100644
--- a/test/csv/test_interface.rb
+++ b/test/csv/test_interface.rb
@@ -167,14 +167,14 @@ class TestCSVInterface < Test::Unit::TestCase
File.unlink(@path)
lines = [{a: 1, b: 2, c: 3}, {a: 4, b: 5, c: 6}]
- CSV.open( @path, "w", headers: true,
- header_converters: :symbol ) do |csv|
+ CSV.open( @path, "wb", headers: true,
+ header_converters: :symbol ) do |csv|
csv << lines.first.keys
lines.each { |line| csv << line }
end
- CSV.open( @path, "r", headers: true,
- converters: :all,
- header_converters: :symbol ) do |csv|
+ CSV.open( @path, "rb", headers: true,
+ converters: :all,
+ header_converters: :symbol ) do |csv|
csv.each { |line| assert_equal(lines.shift, line.to_hash) }
end
end